diff scripts/geometry/griddata.m @ 10548:479536c5bb10

Replace lowercase nan with NaN for visual cue in scripts
author Rik <code@nomad.inbox5.com>
date Fri, 23 Apr 2010 11:13:48 -0700
parents 8cf522ce9c4d
children 95c3e38098bf
line wrap: on
line diff
--- a/scripts/geometry/griddata.m
+++ b/scripts/geometry/griddata.m
@@ -68,7 +68,7 @@
 
   ## Triangulate data.
   tri = delaunay (x, y);
-  zi = nan (size (xi));
+  zi = NaN (size (xi));
   
   if (strcmp (method, "cubic"))
     error ("griddata: cubic interpolation not yet implemented");