NaN vs. Inf

Why is
1/0 = Inf
but
[1,0]./[1,0] = [1 NaN]
shouldn't it be [1 Inf]?

 采纳的回答

Image Analyst
Image Analyst 2011-12-31

2 个投票

1/0 is infinity, but 0/0 is not infinity nor is it zero - it's just undefined (NaN).

1 个评论

Matt Tearle
Matt Tearle 2011-12-31
And if you want to know *why*, think in terms of limits. lim_{x->0} 1/x = infinity. But lim_{x->0} x^2/x = 0, lim_{x->0} x/x = 1, and lim_{x_>0} x/x^2 = infinity. So there's no way to determine what a "0/0" limit might be. Hence, it's undefined (NaN).
Similarly, Inf + Inf = Inf, but Inf - Inf = NaN.

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Detection, Range and Doppler Estimation 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by