admin管理员组文章数量:1339197
Hay guys, i have 2 floats, which both es from input boxes.
I need to pare these 2 floats, if one is negative and one is positive thrown an error. If they're both positive, or both negative, thats fine.
Any ideas?
Thanks
Hay guys, i have 2 floats, which both es from input boxes.
I need to pare these 2 floats, if one is negative and one is positive thrown an error. If they're both positive, or both negative, thats fine.
Any ideas?
Thanks
Share Improve this question edited Jun 18, 2012 at 16:12 mskfisher 3,4164 gold badges37 silver badges49 bronze badges asked Jan 6, 2010 at 14:49 dottydotty 41.5k66 gold badges153 silver badges197 bronze badges 1- 2 What if one is (or both are) zero? – balpha ♦ Commented Jan 6, 2010 at 14:52
4 Answers
Reset to default 12Multiply them together.
If the answer is positive then they are both the same sign.
If the answer is negative then they are of opposite sign.
If the answer is zero (within some value to take care of rounding error) then one or both are zero and you'll have to check them individually. You'll then have to decide whether 0 to be treated as positive or negative in your scenario.
Although detection of the sign of the product can be done, it's not what you are interested in. Especially if you're going to use it on large volumes of floats (eg to detect a zero crossing in a time stream).
The simplest way is to exactly express what you ask for: is the sign of a equal to the sign of b?
function samesign( a, b ) {
var aPositive = a >= 0;
var bPositive = b >= 0;
return aPositive == bPositive;
}
Or shorter:
function samesign( a, b ) { return (a>=0) == (b>=0); }
Just do something like:
if float1*float2<0
Error
function isSameSign(a,b){
var r = a*b;
return (r >= 0)
}
本文标签: javascriptcomparing two floats to see if they39re both negativeor both positiveStack Overflow
版权声明:本文标题:javascript - comparing two floats to see if they're both negative, or both positive - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743577064a2505191.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论