Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
306 views

Math.abs returns wrong value for Integer.Min_VALUE

This code: System.out.println(Math.abs(Integer.MIN_VALUE)); Returns -2147483648 Should it not return the absolute value as 2147483648 ?
4
votes
4answers
3k views

How to convert a negative number to positive?

How can I convert a negative number to positive in Python? (And keep that positive value.)
2
votes
2answers
83 views

Can I create a union with formal parameter passed to a function in C++?

The function below calculates absolute value of 32-bit floating point value: __forceinline static float Abs(float x) { union { float x; int a; } u; //u.x = x; u.a ...
2
votes
4answers
1k views

Absolute value in vb.net

How do you get the absolute value of a number in vb.net? Is there a function built in? I know I can simply code a function myself, but I want to know if there is one already there first. It seems so ...
2
votes
3answers
4k views

Unsigned int to signed in php

I got a problem with ip2long in PHP5. It appears, that in 32bit OS ip2long returns signed int, and in 64bit OS unsigned int is returned. My application is working on 10 servers, and some are 32bit and ...
2
votes
3answers
772 views

How do you programatically position an object in Silverlight?

In Flash this question is answered really easy because you can set the X and Y coordinates of an object: newxpos = object._x; newypos = object._y; How do you do the same in Silverlight?
1
vote
1answer
74 views

Odd behavior when decrementing a CCSprite velocity

My CCSprite subclass has two float properties called, velX and velY to keep track of the velocity of my player. When it gets swiped in the game layer, I figure out the vector direction of the swipe ...
1
vote
1answer
143 views

Is there any reason this isn't redundant code?

I came across this code in some existing codebase: double rad = ComputeCurviness(); double off = Math.Abs(rad); if (rad < 0) off = -off; It seems to be basically just making off equal to rad. ...
1
vote
7answers
2k views

isn't there an operator in c to change the sign of a int float etc from negative to positive or vice versa?

trying to find absolute value and i thought there was a simple way to just invert the sign with '~' or something.
1
vote
2answers
480 views

Absolute value for floats in core OCaml

I am in need of an absolute value function for floats in OCaml and the core language doesn't seem to possess one, so I wrote the following: let absF (f:float) = if f > 0.0 then f else (f *. ...
0
votes
2answers
68 views

float to integer in python

If I want to convert a float to an integer in Python, what function do I use? The problem is that I have to use a variable passed through the function math.fabs (Absolute Value) as an index for a ...
0
votes
4answers
764 views

How can I find the difference between 2 values in C#?

I am working with an Oscillator that fluctuates between 10.000000 and -10.000000 The value changes say every 5 minutes. I want to find the difference between the current value and the value of 5 ...