Double precision floating-point format is a 64 bit data type used for storing fractional numbers.
3
votes
0answers
223 views
Random double Web Requests C# IIS7 PollLockedSessionCallback
i sometimes have double web requests (no double clickers).
Can anyone please tell me what causes them, so i can prevent them?
initial situation:
It is a .Net 3.5 C# Application running in IIS7. No ...
2
votes
0answers
61 views
Declare a pointer to pointer inside C# struct
How to convert this c++ struct into C# equivalent?
typedef struct readdirplus_hash_bucket {
ifs_rdplusbucket **hash;
int hash_size;
} ifs_rdplushashbucket;
I stuck in double pointer.
...
2
votes
0answers
76 views
c# double modulus returns 0 with “Optimize Code” turned on
So I made my own struct to represent angle values, with some convenience methods. However, while it works in Debug mode, when turning on optimizations in Release mode, my code behaves differently. Am ...
2
votes
0answers
409 views
representation of numbers in bash and printf of hexadecimal numbers in bash
I want to understand how numbers (doubles) are represented in bash and what happens when I printf numbers in hexadecimal format in bash.
According to the IEEE 754 standard double should be ...
2
votes
0answers
68 views
How can I display 64 bit double number using VBScript on 32 Bit OS?
I have a device that contains 64 bit number (Double) parameters.
I can read it's Double parameters using Modbus protocol in two parts.
So I split 64 Bit number to two 32 number using Bitwise ...
2
votes
0answers
59 views
Using OpenCV converting imread Mat's unsignedchar data to double
Im coing in C++.After reading an input image into OpenCV using imread, for further processing i need to convert the image data into double.
How can it be done.Is there any pre-defined CV function...?
2
votes
0answers
141 views
How do I exclude onTouch method when onDoubleTapEvent is being called (in a gridview)?
I needed a touch listener on a calendar grid view. It's supposed to have an onTouch method to get the data from dragging on the calendar, and an onDoubleTapEvent to delete entries. I also implemented ...
2
votes
0answers
308 views
How to use double Buffered AWT Animations in Java
I have recently begun working with double buffering in Java. I have read tutorials that have shown me how to display images and move them using mouse and keyboard events. However this is where I ...
1
vote
0answers
65 views
Double.MaxValue crashes mixed Native/C# application
We have a problem with an application crashing when it calls a method that uses Double.MaxValue. This is true running in the debugger as well as in the release version, and happens under 32-bit XP as ...
1
vote
0answers
29 views
Java Double Buffering is Only Producing a Gray Screen
I'm working on a simple game for a class project, and can't get my image to paint onscreen.
Here's my JFrame that serves as the user's interface.
import java.awt.image.BufferStrategy;
import ...
1
vote
0answers
29 views
MS SQL calculation query - incorrect results and/or data type (only shows integer part)
I've attached picture of the problem I'm having. Basically I am supposed to be getting answer like 3.66667 for first GPA, but it's showing 3. Same for the other 2 GPAs - they have decimal parts, but ...
1
vote
0answers
61 views
Symfony2: adding dynamically an element to a double embedded relation form
One model like this:
class X
{
/**
* @ORM\OneToMany(targetEntity="Block", mappedBy="x",cascade={"all"}, orphanRemoval=true)
*/
private $block;
...
class Block
{
/**
* ...
1
vote
0answers
124 views
Binary tree of doubles/comparison of doubles C++
I'm trying to implement a binary tree with doubles, but I believe my doubles comparison is not correct. When I feed it ints it works properly; however, if I insert doubles with many trailing decimal ...
1
vote
0answers
114 views
Android ListFragment creates double list on recreate
I am trying to implement a basic activity with 2 tabs, each tab containing a list.
Following guides, I have written the following code:
MainActivity.java
public class MainActivity extends Activity {
...
1
vote
0answers
92 views
JPQL join tables doubles column names
I have multiple tables in a join and every table has a column ID. So in the resultig join there are a lot of ID columns. How I can access a specific ID column with the criteria API?
...
1
vote
0answers
70 views
mysterious and strange error in double to float typecast vs2010
Please look at the following data taken from VS2010 workspace from file lkpyramid.cpp at line no 425 from OpenCV 2.4.2
(A12*b2 - A22*b1) * D -0.0551553(87)159150693 double
...
1
vote
0answers
350 views
Show Amount upto two decimal places without rounding off in DataGrid
Say for example i have a large number 12345678.88 right now when i display it in the Datagrid
with the use of
<asp:Label ID="txtlineAmt" runat="server" ReadOnly="true" Text='<%# ...
1
vote
0answers
124 views
plotting doubles on an integer scale VB.NET
I am plotting a log base 10 X axis, and linear Y axis. The data I wish to plot is being read into two list boxes correctly and the chart uses the data in the list boxes to plot X and Y values.The ...
1
vote
0answers
105 views
pushState on existing url, on refresh cause double url in history
I've a problem. obviously.
First of all, sorry for my bad english. Then...
I'm using History.js for pushState and other function of History API in HTML5. But this is not the point.
example:
i've ...
1
vote
0answers
72 views
Error converting 0 to double on user's machine with Silverlight
I have a Silverlight application that gets down data from the server in the form of an XML string, opens it as a document, and parses through things.
This works on all other machines, but we have ...
1
vote
0answers
183 views
Phonegap - Double Tap Zoom in Google maps
how can i do Double tap zoom in google maps with phonegap ?
Someone can help me plase ?
1
vote
0answers
91 views
Can anyone explain this behavior? (Setting a lat/long to public double auto properties)
I think the screenshot explains it best...
However, the issue is, I'm passing in a lat/long as two doubles to this GeoCoord object. The object has two public properties Latitude and Longitude.
...
1
vote
0answers
352 views
JOGL - Enabling double buffering increases performance : How?
I am enabling or disabling double buffering using the following code
GLCapabilities caps = new GLCapabilities(glp);
caps.setDoubleBuffered(false);
Now, I was of the understanding that enabling ...
1
vote
0answers
216 views
Large static float and double arrays causing App to slow down
This is more of a generic question which has to do with static variables and the process life cycle.
I have developed a heavy multi threaded signal processing Android app. It is targeted at API level ...
1
vote
0answers
627 views
fscanf reading into a double array strange values
The following code has the intent of reading doubles from a file and putting them into an array. Quite simple.
double arr[100];
int i = 0;
while(fscanf(fin, "%lf", &arr[i]) != EOF)
i++;
...
1
vote
0answers
693 views
Any way to set Visual Studio 2010 locale to English without installing/uninstalling? (aka. How to change decimal separator from dot to comma?)
I've checked similar questions and I've noted that most solutions involve re-installing VS or installing packages that resolve this issue, I'm looking for a way to fix this issue by adjusting settings ...
1
vote
0answers
117 views
htaccess rewrite with double rules (with version)
I hope a htaccess script voodoo can help me here!
I'm trying to get a htaccess script working using two rules.
I was using a first rule to use folders for different versions, which was great:
...
1
vote
0answers
50 views
No converter for System.Double[] when using fitSharp 1.9
When I run my FItnesse tests using fitSharp I am getting the "No converter for System.Double[]" error message near each value in capexAmounts column.
But the results are parsed and handled as doubles ...
1
vote
0answers
175 views
How to get coordinates of a place on DoubleTap in android?
Hi i want to get coordinates from the map on double tap event. Currently my app is returning coordinates and name of the place on single tap, which makes it very busy and slow.
Kindly help me out and ...
1
vote
0answers
150 views
I want to get location on doubleTap event
I am using google api`s and i want to get the location of the place on map on double tap.
kindly show me some code sample about how to use the method.
Currently my app is showing coordinates on ...
1
vote
0answers
348 views
String Formatting - Localisation
I am working on localising a vc++ pocket pc application. I am storing data in the database in English format and while diplaying data to the user, display it in their local language. I use the ...
0
votes
0answers
25 views
Implement sound Interval Arithmetic
How to implement sound Interval Arithmetic in Java?
I need to implement a sound interval arithmetic with java.
Let's take the type double as example, we use an iterval [0.09999....005, ...
0
votes
0answers
25 views
How to print double or float number without losing precision?
When I want to output a double (or float) number, such as 4.999999999999999999999, which is over the double precision (15 digits), the result of double is 5.000000000000000 and the result of float is ...
0
votes
0answers
15 views
MS Access get int from textfield
I have a form and I need to get integer value from textfield.
Dim year As Integer
year = Val(TextField.Value)
I've tried to use that, but Val returns double, so I need either function which ...
0
votes
0answers
21 views
Convert NSString to double
Can someone please help me with my code, i've imported a mysql database into NSStrings using JSON but now i need to convert two of these into doubles to represent latitude and longitude but i'm unsure ...
0
votes
0answers
19 views
htaccess: double lang marker in url (multilanguage)
I have problem with htaccess. On my site I have url:
http://domain.com/de/de/shop/kategorien/andere/angel-2-detail
instead of
http://domain.com/de/shop/kategorien/andere/angel-2-detail
...
0
votes
0answers
27 views
Beginning of JSON Work - Getting Values
I'm not too experienced-or experienced at all for that matter with JSON. I'm using the official JSON-in-Java package, and it somewhat works... not really.
With JSON like this:
{
"versions": [
...
0
votes
0answers
79 views
Watir + gwt application
I am writting automatic test for GWT application. And I try to double click on table element. I am using this code fo click:
browser.element(:xpath, ...
0
votes
0answers
22 views
Cant get to seem the jar file working ! :(
I am using netbeans IDE 7.3, the file opens wonderfully via the command-line but when I double-click it, the command prompt opens for a split second and closes.
i have 64bit windows 8 and jre7
I ...
0
votes
0answers
14 views
How to find out which CLI is used in soffice of OpenOffice | LibraOffice?
I'd like to write a tool which wraps soffice application.
The problem is CLI for different version of OpenOffice|LibreOffice on diffrent platforms are different. Like:
Windows:
OpenOffice 3.4.1: ...
0
votes
0answers
110 views
Highcharts with JSON double quotes
I found your post here Trying to push data to a JSON array . I am also facing the same JSON double quotes issue with highcharts gantt charts.
From that post it is not clear how you solved it. Can ...
0
votes
0answers
37 views
Can I map a Decimal column to String type in Entity Framework complex type?
I am having a SQL Server table with a column 'X' of Decimal data type.
When I select rows in the table using a stored procedure, some rows contains NULL value in column 'X'. So when I use a complex ...
0
votes
0answers
17 views
Struggling with Floats/Doubles with jgoodies data binding
I seem to be struggling to map floats/doubles using JGoodies Databinding.
I've tried the following:
BasicComponentFactory.createFormattedTextField(valueModelxField, new DecimalFormat("0.#####"));
...
0
votes
0answers
20 views
How to get the array values from an user?
How to fill an array from the user?
It says " In the main method, ask the user to initialize an array and fill the array with decimal point numbers (double) T.he numbers that fill in the array cant ...
0
votes
0answers
41 views
JSONKIT objectFromJSON double value parsing error
When I try to parse a JSON string like this with `objectFromJson:
{
"idvino": 2,
"idusuario": 2,
"notamedia": 0.0,
"numerovotaciones": 0,
"usuario": null,
"nombre": "Romanico",
"comentariocata": ...
0
votes
0answers
55 views
dynamic hashing and double probing
Let I use for example dynamic hashing technique with linear probing. When my table gets a half full I can simply increase Hash Table size 2 times and technique is still working. But if I use double ...
0
votes
0answers
28 views
Double Values Not Showing Calculated Values
I'm trying to calculate the payment term for the user. I try to crunch the numbers and spit them out, but that's not happening for some reason. However, it displays perfectly fine when I explicitly ...
0
votes
0answers
60 views
Why does Mysql change a double to a blob when you concatenate it?
In class we were working on example problems and I tried to run the following code
SELECT COUNT(CUS_CODE) as "Number of Customers", concat('$',MIN(CUS_BALANCE)) as "Minimum Customer Balance", ...
0
votes
0answers
127 views
Java EMI calculation
I have an EMI problem to be solved in Java. I think I got most of the things right,but there are fine issues with the result and I am not getting the desired values.
The input will contain a ...
0
votes
0answers
42 views
Strings in java (decimal point)
Hi how can i perform a programme that can display how many digits come before the decimal point and how many comes after a number.
Test this program on :
z=123.456, y = 17/3, z = √2


