comparison scripts/plot/__go_draw_axes__.m @ 7292:5e90111a28b3

[project @ 2007-12-11 18:13:34 by jwe]
author jwe
date Tue, 11 Dec 2007 18:15:06 +0000
parents a239de118fa6
children c06476bb301d
comparison
equal deleted inserted replaced
7291:de593fd63ecf 7292:5e90111a28b3
842 [xdat, ydat] = meshgrid (xdat, ydat); 842 [xdat, ydat] = meshgrid (xdat, ydat);
843 else 843 else
844 err = true; 844 err = true;
845 endif 845 endif
846 elseif (ismatrix (xdat) && ismatrix (ydat) && ismatrix (zdat)) 846 elseif (ismatrix (xdat) && ismatrix (ydat) && ismatrix (zdat))
847 if (! (size_equal (xdat, ydat) && size_equal (xdat, zdat))) 847 if (! size_equal (xdat, ydat, zdat))
848 err = true; 848 err = true;
849 endif 849 endif
850 else 850 else
851 err = true; 851 err = true;
852 endif 852 endif