Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is NaNi, and how is it different fron NaN?

Tags:

matlab

I am writing a function in Matlab. There should be something wrong. The output of my function is a vector. When I see every element of my vector I see NaN (Not a Number) and NaNi, that really I don´t Know?

Does anybody know what is NaNi?

like image 628
Peterstone Avatar asked Nov 11 '10 15:11

Peterstone


People also ask

What does Nani mean?

The term “nani” is Hawaiian means beautiful. It is a popular Hawaiian name for girls. The term “nani” also translates to the word “grandmother” in Hindu.

How do you use Nan no in Japanese?

なん can also be used with ですか to form the sentence “what is it?” where as なに cannot be use with “ですか”. のcan also be used after なん to create the phrase “what kind of”.

What is Nani Japan?

Nani written in Japanese hiragana is なに, nani, or なん, nan. And nani in Japanese kanji is 何. You use なに when you want to emphasize “what”, such as using the word on its own or when followed by a noun. For example, 何があったの? (nani ga atta no), which means “What happened?”


1 Answers

NaNi is an imaginary Not-A-Number:

>>NaN*i
ans =
            0 +        NaNi
like image 102
Jonas Avatar answered Sep 19 '22 20:09

Jonas