Mercurial > hg > octave-nkf
comparison scripts/plot/mplot.m @ 3979:e0b7a493e5a8
[project @ 2002-07-10 17:45:34 by jwe]
author | jwe |
---|---|
date | Wed, 10 Jul 2002 17:45:34 +0000 |
parents | f8dde1807dee |
children | 92be67bc9301 |
comparison
equal
deleted
inserted
replaced
3978:10bc4c350d61 | 3979:e0b7a493e5a8 |
---|---|
30 ## @end deftypefn | 30 ## @end deftypefn |
31 | 31 |
32 ## Author: Vinayak Dutt <Dutt.Vinayak@mayo.EDU> | 32 ## Author: Vinayak Dutt <Dutt.Vinayak@mayo.EDU> |
33 ## Adapted-By: jwe | 33 ## Adapted-By: jwe |
34 | 34 |
35 function mplot (...) | 35 function mplot (varargin) |
36 | 36 |
37 if (! gnuplot_has_multiplot) | 37 if (! gnuplot_has_multiplot) |
38 error ("mplot: gnuplot does not appear to support this feature"); | 38 error ("mplot: gnuplot does not appear to support this feature"); |
39 endif | 39 endif |
40 | 40 |
49 global __multiplot_yi__; | 49 global __multiplot_yi__; |
50 | 50 |
51 gset nologscale; | 51 gset nologscale; |
52 gset nopolar; | 52 gset nopolar; |
53 | 53 |
54 __plt__ ("plot", all_va_args); | 54 __plt__ ("plot", varargin{:}); |
55 | 55 |
56 ## update the plot position | 56 ## update the plot position |
57 | 57 |
58 if (__multiplot_mode__) | 58 if (__multiplot_mode__) |
59 | 59 |