octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

shouldn't mesh treat NaN and NA in the same way?


From: Evan
Subject: shouldn't mesh treat NaN and NA in the same way?
Date: Wed, 2 May 2007 17:42:25 +0800

In octave 2.9.10, mesh treat NaN and NA differently.

octave:1> z1=[NaN, 2, 3; 4, 5, 6; 7, 8, 9]
z1 =

  NaN     2     3
    4     5     6
    7     8     9

octave:2> z2=[NA, 2, 3; 4, 5, 6; 7, 8, 9]
z2 =

   NA     2     3
    4     5     6
    7     8     9

octave:3> mesh(z1)
octave:4> mesh(z2)
octave:5> Notice: No surface grid anything could be hidden behind

octave:5>
octave:5>


reply via email to

[Prev in Thread] Current Thread [Next in Thread]