Tagged Questions
-8
votes
2answers
42 views
Type casting int and double [closed]
In the primitive type casting in Java, what would the following code show?
float a = 1.11;
int b = a;
int c = (int)a;
System.out.println(a + " " + b + " " + c);
And could a double variable be cast ...
1
vote
6answers
69 views
java use object as double without explicit cast
Say I have this:
Object obj = new Double(3.14);
Is there a way to use obj like a Double without explicitly casting it to Double? For instance, if I wanted to use the .doubleValue() method of Double ...
0
votes
2answers
107 views
Convert int to double Java
I'm currently having an issue with my code.
I have to declare hours and minutes as int, and totalTimeHours as double.
totalTimeHours is used to store the total time in hours, ex 6.555 hrs.
The problem ...
1
vote
2answers
55 views
java-Cast String Arraylist to double ArrayList
I have a String arraylist and i am going to convert it to a double arraylist. Is there any way except using loops like for,While to convert it?
ArrayList<String> S=new ...
0
votes
1answer
36 views
Cast double to char in Matlab? Why strcat('hello', char(324)) not working?
Goal
>> strcat('D_', char(2340), '.txt')
D_2340.txt
but failure with D_.txt. Why does it ignore the double casted to char? I also tried cast(340, 'char') but the same ignorance problem. It ...
-1
votes
3answers
134 views
c++ converting txt file data into double variables
Hi so I started to create a program to calculate a person's GPA and save that info for future reference. My problem is that I can't figure out how to read the numbers saved in the .txt file and then ...
0
votes
1answer
36 views
ObjC unusual behavior when casting NSUInteger to double
I'm experiencing some strange behavior when I negate a NSUInteger and cast to a double.
NSUInteger test = 10;
NSLog(@"%d", test);
NSLog(@"%f", (double) test);
NSLog(@"%d", -test);
NSLog(@"%f", ...
0
votes
1answer
23 views
double datatype casting works on windows but not on linux
I am having a string pointer in C which is having bigint data.
eg 9223372036854775807 i.e 2^63
I wanted to cast this to double but as you know double has 15/16 digits available to store in fraction ...
5
votes
6answers
329 views
C++ casting static two-dimensional double array to double**
I have such matrix in my program:
double m[3][4] =
{
{2, 4, 5, 7},
{4, 5, 1, 12},
{9, 12, 13, -4}
};
And I'd like to cast it to double** type.
I've already tried ...
1
vote
1answer
42 views
(Java) why is Math.ceil(15/10) is 1.0 and not 2.0?
why is Math.ceil(15/10) is 1.0 and not 2.0 ?
When I run instead Math.ceil((double)15/10) I get 2.0 as expected
-2
votes
1answer
122 views
How to convert some long double to long int in c?
I'm trying to convert a double type variable to a long long int. The only way I know to do it is by casting. Althoulg it seems ok, I'm not receiving the number I wanted.
I post the code piece ...
2
votes
3answers
120 views
Cast char* to double - as bytes
I have a byte array that represents double:
char number[8];
I need to cast this to actual double (which has 8 bytes as well). Based on advice I tried this, but it failed:
...
0
votes
0answers
54 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 ...
5
votes
1answer
300 views
double to long without conversion in Java
I need to turn double into long preserving its binary structure, not number value. Just change type, but leave binary value as it is. Is there a native way to do it?
1
vote
4answers
166 views
Invalid cast from Complex* to double
I have to return the distance between two complex numbers and the error I get is in the return line saying "Invalid cast from Complex* to double".
double Complex::distance(const Complex &a, const ...
1
vote
3answers
90 views
Can I convert 0.16, 0.32, etc. into an integer properly (16, 32, etc.) in C?
I'm trying to convert the decimal portion of a double 247.32
into an int 32. I only need two decimal places.
I can cast the double as int and subtract from the double to get .32000
I can then ...
0
votes
1answer
65 views
Unexpected result converting double to int
I was trying to cast a double value to int and I got a different value.
I have this code:
double double100times = 240;
int a=[[NSNumber numberWithDouble:double100times] intValue];
and the value I ...
-1
votes
3answers
84 views
casting of string to double
I have made a simple android app,i that some calculations are there from 1 activity's EditText value some multiplication,sum and other mathematical procedures and showing results as double in another ...
0
votes
4answers
230 views
how to retrieve a Double value from one activity to another?
I have made an application containing 2 activities ,in that first activity contains some EditTexts (decimal numbers),and anothe ractivity also contains some Edtitexts(decimal) ,now I want to pass one ...
1
vote
0answers
75 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
1answer
115 views
Double precision when number converted from string
I’m getting numbers from a database. Some are stored as double in the database and some are stored as string.
What I want to do is count the decimal number of caracters so : 345.34938 would give me a ...
4
votes
5answers
483 views
Java: many ways of casting a (long) Object to double
I have an Object obj that I know is actually a long.
In some Math code I need it as double.
Is it safe to directly cast it to double?
double x = (double)obj;
Or should I rather cast it first to ...
-1
votes
4answers
66 views
Trouble casting integers to doubles [closed]
I'm trying to get this program to call function arrayAvg with an array of {1,2} and return a double of the average (which would be 1.5).
This is what my code looks like at the moment. Anybody have an ...
1
vote
1answer
100 views
Double array only stores ints
I have this code here that I think should work, and it does! except for the fact that though I've declared a pointer to an array of type double, it always stores int, and I don't know why.
first, I ...
-2
votes
7answers
165 views
Casting a double as an int, does it round or just strip digits?
Doing some calculations with doubles which then need to be cast to an int. So i have a quick question, when casting a double say 7.5 to an int, it will return 7.
Is this a product of rounding or just ...
0
votes
0answers
93 views
Python Casting Float Addition to int
I have the following Class definition for a rect:
class Rect(object):
def __init__(self, *args):
# Again with the weird non-pythonic mess
if len(args) == 1: # copy another rect
...
0
votes
4answers
244 views
Loss of double precision C#
I am experiencing precision loss when im using doubles and i cant seem to find where the precision is lost.
I am writing a software synthesizer and for some reason the input frequency for an ...
0
votes
1answer
87 views
How check a double overflow when I tried to convert a char* to a double in c++
I want to convert a char * to a double in c++. But before do that, I want to check that the char * is a right double number. So I have made this code :
bool ...
0
votes
1answer
46 views
How to cast a reference to pointer to pointer to pointer
I have a pointer void* p which points to X object. How can I make a void** p2 pointer which points to p pointer? The reason I want to do this is that position of X object may change after remapping it ...
1
vote
0answers
310 views
Is it possible to cast a DECIMAL to DOUBLE in MySQL?
I know all the numerical implications, that is, the possible rounding issues inherent to floating point formats, but in my case I have DECIMAL columns in MySQL that I want to convert to DOUBLE ...
1
vote
3answers
371 views
Copy contents of an int Array to a double Array in Java?
I'm trying to copy the contents of my int array into an array of type double. Do I have to cast them first?
I successfully copied an array of type int to another array of type int.
However now I ...
3
votes
3answers
101 views
Why do I get different results only 1% of the time?
I am trying to truncate everything past the hundredths decimal. (13.4396 would be 13.43) Sholdn't it always or never work?
I have this formula that works 99%:
input = (( (double) ((int)(orgInput ...
2
votes
2answers
97 views
Java 6 - Creating and detecting the first double value above Long.MAX_VALUE
Below I attempt to assign to value the maximum Long value, then add to it the minimum positive Double value possible.
I then try to detect that the value is greater than the maximum Long value.
...
3
votes
2answers
2k views
MATLAB automatically converts double to int without explicit cast
I would let the output speak for itself:
>> numFiles, meanTangle, sdTangle
numFiles =
526
meanTangle =
0.4405
sdTangle =
0.1285
Now, when I create a vector out of ...
1
vote
2answers
141 views
Converting double to string. Boost Libraries appear not to work, and sstream causes “SEG FAULT”
I have a simple problem, and I think I'm just doing something stupid which is causing a SEGFAULT.
I simply want to convert a double variable to a string, and then 'strcat()' them both together and ...
0
votes
1answer
95 views
Casting object array with unknown value types to a double
I am writing a quartile function and I am stuck with this problem. I am pulling a array with unknown types and length, but i need to cast it to a double.
This is my current code which compiles but ...
0
votes
5answers
279 views
Float and double rounding in C
I went upon a very strange behavior (to me) :
int generate_scenario_one_pass(FILE *out, double freq_mhz) {
unsigned int d_freq, d_freq_test;
d_freq = (int)(freq_mhz * ...
1
vote
4answers
431 views
Converting Object to Double in Java
I'm trying to deal with a lot of ClassCastExceptions in my code that are originating from a single critical point. I'll start with providing some background information for this question
I'm reading ...
5
votes
2answers
737 views
Are Java integer-type primitive casts “capped” at the MAX_INT of the casting type?
I was trying to track down some very weird Java behavior. I have a formula that involves a double, but is "guaranteed" to give an integer answer -- specifically, an unsigned 32-bit integer (which, ...
7
votes
3answers
264 views
C# Casting to a decimal
What, if any, is the difference between?
decimal d = (decimal) myDouble;
decimal d = new decimal(myDouble);
decimal d = Convert.ToDecimal(myDouble);
0
votes
6answers
671 views
casting between short,int,long,double,float in Java
As i understand, when you cast between 2 of these types with an arithmetic operation in Java, for example double + int, the result will be as the bigger type (meaning in this example, the result will ...
1
vote
1answer
79 views
Python Socket Recieving Doubles
I need a python program to use a TCP connection(to another program) to retrieve sets of 9 bytes.
The first of the nine bytes represents a char, and the rest represent a double.
How can I extract ...
3
votes
4answers
403 views
C# int- or object-to-double casting error explanation
The below code fails at the last assignment:
static void Main(string[] args)
{
int a = 5;
object b = 5;
System.Diagnostics.Debug.Assert( a is int && b is int );
double x = ...
2
votes
2answers
402 views
How many bits of precision for a double between -1.0 and 1.0?
In some of the audio libraries I've been looking at, a sample of audio is often represented as a double or a float with a range of -1.0 to 1.0. In some cases, this easily allows analysis and ...
0
votes
10answers
1k views
Checking if a variable is of data type double
I need to check if a variable I have is of the data type double. This is what I tried:
try
{
double price = Convert.ToDouble(txtPrice.Text);
}
catch (FormatException)
{
...
1
vote
2answers
417 views
How to use printf with mpfr and mpreal
What is the correct syntax for using printf and its cousins sprintf and fprintf to display the value of mpreal-type variables? I have tried the naive casting to double:
printf ("... %g ...", (double) ...
0
votes
2answers
837 views
C++ - g++ casting int to double gives negative value
Was working on a project with mingw on windows :
C:\Users\...>g++ -dumpversion
4.5.0
When I compiled the code under g++ v 4.2.4 I was getting a segmentation fault - after couple hours I pinned ...
12
votes
5answers
650 views
Will a double equal to an integer always cast to that integer?
Will a double equal to an integer always cast to that integer (assuming the double is not one that causes an overflow). Example: Math.ceil() will return a double that is equal to an integer. ...
-2
votes
1answer
271 views
From double to geopoint remove me the ,
i have 2 doubles, lat and long with the form (X.XXXXXX).
I'm trying to make new GeoPoint from this values, but when I convert to GeoPoint, remove the , obtain this result geopoint(XXXX,XXXX);
Double ...
19
votes
5answers
1k views
Is it better to cast double as decimal or construct “new” decimal from double?
When going from a double to a decimal, presuming my double can be represented as a decimal...
Is it more appropriate to cast a double as a decimal:
(Explicit Numeric Conversions Table) (Note that ...









