vote up 0 vote down star

I've used this in other languages, but lua seems to be lacking this rather useful function.

Could one of you nice chappies provide me a lua function to get the sign of the number passed to it?

flag

75% accept rate
2  
Erm... if it's less than zero, it's negative? – ire_and_curses Aug 23 at 10:33

2 Answers

vote up 1 vote down check

You can check for the sign like this:

i = -2
if i == math.abs(i) then -- or i >= 0
   print "positive"
else
   print "negative"
end
link|flag
Hmm. fair enough, thanks. – SilentCipher Aug 23 at 10:36
vote up 4 vote down
function math.sign(x)
   if x<0 then
     return -1
   elseif x>0 then
     return 1
   else
     return 0
   end
end
link|flag
I wouldn't polute the standard library namespace. – tkadlubo Aug 26 at 8:00
I don't think it's a mortal sin. – lhf Aug 26 at 12:11

Your Answer

Get an OpenID
or

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