vote up 0 vote down star

Hay Guys, I have quick question.

I have a few floats:

-4.50
+6.25
-8.00
-1.75

How can I change all these to negative floats so they become:

-4.50
-6.25
-8.00
-1.75

Also i need a way to do the reverse

If the float is a negative, make it a positive.

Thanks

flag

4  
integers? seriously? – SilentGhost Sep 17 at 11:04
floats ;) My bad. – dotty Sep 17 at 11:05

6 Answers

vote up 8 vote down check

A trivial

$num = $num <= 0 ? $num : -$num ;

or, the better solution, IMHO:

$num = -1 * abs($num)

EDIT:

the explicit multiplication can be avoided for shortness as @VegardLarsen has posted, but I prefer readability over shortness :)

EDIT2:

I suggest to avoid if/else (or equivalent ternary operator) especially if you have to manipulate a number of items (in a loop or using a lambda function), as it will affect performance.

EDIT3:

"If the float is a negative, make it a positive."

In order to change the sign of a number you can simply do:

$num = 0 - $num;

or, multiply it by -1, of course :)

link|flag
Is this not backwards? – Dan Sep 17 at 11:06
Ops, yes sorry, just reversed the order:) – AlberT Sep 17 at 11:08
Ha, ok... for a second there I was doubting my own sanity. – Dan Sep 17 at 11:10
1  
I could be wrong, but I'm pretty sure that since you're performing an operation under certain conditions ($num is positive) and not others ($num <= 0), you're always going to be using an if statement somewhere. Does abs($num) not simply perform $num = ($num >= 0) ? $num : -$num; under the hood? – Dan Sep 17 at 11:36
1  
You are right, but it would be performed at low level, in C. By PHP, not in PHP. – AlberT Sep 17 at 11:46
show 5 more comments
vote up 6 vote down

How about something trivial like:

  • inverting:

    $num = -$num;
    
  • converting only positive into negative:

    if ($num > 0) $num = -$num;
    
  • converting only negative into positive:

    if ($num < 0) $num = -$num;
    
link|flag
Why did I get a down vote? – Gumbo Sep 17 at 11:19
vote up 14 vote down
$float = -abs($float);
link|flag
vote up 3 vote down

I think Gumbo's answer is just fine. Some people prefer this fancy expression that does the same thing:

$int = (($int > 0) ? -$int : $int);

EDIT: Apparently you are looking for a function that will make negatives positive as well. I think these answers are the simplest:

/* I am not proposing you actually use functions called
   "makeNegative" and "makePositive"; I am just presenting
   the most direct solution in the form of two clearly named
   functions. */
function makeNegative($num) { return -abs($num); }
function makePositive($num) { return abs($num); }
link|flag
why to wrap abs() when used as is? nah. – AlberT Sep 17 at 13:45
vote up 2 vote down

re the edit: "Also i need a way to do the reverse If the float is a negative, make it a positive"

$number = -$number;

changes the number to its opposite.

link|flag
vote up 1 vote down

This was a popular funny question on reddit a couple of weeks back. Some people post ridiculous answers involving for loops and such. I was tempted at post a solution like that here but I think some may not have seen the humor in it and I would have gotten down votted fairly quick.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.