Objective-C - nan 的浮点检查

发布于 2024-09-14 19:03:29 字数 167 浏览 6 评论 0原文

我有一个变量浮动斜率,在打印时有时会具有nan值,因为有时会发生除以0的情况。

我正在尝试在发生这种情况时执行 if-else。我怎样才能做到这一点? if (slope == nan) 似乎不起作用。

I have a variable float slope that sometimes will have a value of nan when printed out since a division by0 sometimes happens.

I am trying to do an if-else for when that happens. How can I do that? if (slope == nan) doesn't seem to work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

心头的小情儿 2024-09-21 19:03:29

两种方式或多或少是等效的:

if (slope != slope) {
    // handle nan here
}

或者

#include <math.h>
...
if (isnan(slope)) {
    // handle nan here
}

man isnan 将为您提供更多信息,或者您可以在 C 标准中阅读所有相关信息)

或者,您可以在之前检测到分母为零你进行除法(或者使用atan2,如果你最终只是在斜率上使用atan而不是进行一些其他计算)。

Two ways, which are more or less equivalent:

if (slope != slope) {
    // handle nan here
}

Or

#include <math.h>
...
if (isnan(slope)) {
    // handle nan here
}

(man isnan will give you more information, or you can read all about it in the C standard)

Alternatively, you could detect that the denominator is zero before you do the divide (or use atan2 if you're just going to end up using atan on the slope instead of doing some other computation).

我恋#小黄人 2024-09-21 19:03:29

没有什么东西等于 NaN — 包括 NaN 本身。所以检查x != x

Nothing is equal to NaN — including NaN itself. So check x != x.

顾忌 2024-09-21 19:03:29
 if(isnan(slope)) {

     yourtextfield.text = @"";
     //so textfield value will be empty string if floatvalue is nan
}
else
{
     yourtextfield.text = [NSString stringWithFormat:@"%.1f",slope];
}

希望这对你有用。

 if(isnan(slope)) {

     yourtextfield.text = @"";
     //so textfield value will be empty string if floatvalue is nan
}
else
{
     yourtextfield.text = [NSString stringWithFormat:@"%.1f",slope];
}

Hope this will work for you.

小耗子 2024-09-21 19:03:29

在 Swift 中,您需要执行 slope.isNaN 来检查它是否为 NaN。

In Swift, you need to do slope.isNaN to check whether it is a NaN.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文