comparison scripts/geometry/griddata3.m @ 10549:95c3e38098bf

Untabify .m scripts
author Rik <code@nomad.inbox5.com>
date Fri, 23 Apr 2010 11:28:50 -0700
parents eb63fbe60fab
children 1740012184f9
comparison
equal deleted inserted replaced
10548:479536c5bb10 10549:95c3e38098bf
29 ## @end deftypefn 29 ## @end deftypefn
30 30
31 ## Author: David Bateman <dbateman@free.fr> 31 ## Author: David Bateman <dbateman@free.fr>
32 32
33 function vi = griddata3 (x, y, z, v, xi, yi, zi, method, varargin) 33 function vi = griddata3 (x, y, z, v, xi, yi, zi, method, varargin)
34 34
35 if (nargin < 7) 35 if (nargin < 7)
36 print_usage (); 36 print_usage ();
37 endif 37 endif
38 38
39 if (!all (size (x) == size (y) & size (x) == size(z) & size(x) == size (v))) 39 if (!all (size (x) == size (y) & size (x) == size(z) & size(x) == size (v)))