Mercurial > hg > octave-lyh
comparison scripts/plot/loglogerr.m @ 5214:eecc24b92d97
[project @ 2005-03-16 17:14:12 by jwe]
author | jwe |
---|---|
date | Wed, 16 Mar 2005 17:14:12 +0000 |
parents | c08cb1098afc |
children | 32c569794216 |
comparison
equal
deleted
inserted
replaced
5213:390f13fc0f4a | 5214:eecc24b92d97 |
---|---|
34 ## additional information. | 34 ## additional information. |
35 ## | 35 ## |
36 ## @end deftypefn | 36 ## @end deftypefn |
37 ## | 37 ## |
38 ## @seealso{errorbar, semilogxerr, semilogyerr, polar, mesh, contour, | 38 ## @seealso{errorbar, semilogxerr, semilogyerr, polar, mesh, contour, |
39 ## __pltopt__, bar, stairs, gplot, gsplot, replot, xlabel, ylabel, and title} | 39 ## __pltopt__, bar, stairs, replot, xlabel, ylabel, and title} |
40 | 40 |
41 ## Created: 20.2.2001 | 41 ## Created: 20.2.2001 |
42 ## Author: Teemu Ikonen <tpikonen@pcu.helsinki.fi> | 42 ## Author: Teemu Ikonen <tpikonen@pcu.helsinki.fi> |
43 ## Keywords: errorbar, plotting | 43 ## Keywords: errorbar, plotting |
44 | 44 |
46 | 46 |
47 if (nargin < 2) | 47 if (nargin < 2) |
48 usage ("loglogerr(...)"); | 48 usage ("loglogerr(...)"); |
49 endif | 49 endif |
50 | 50 |
51 gset logscale x; | 51 __gset__ logscale x; |
52 gset logscale y; | 52 __gset__ logscale y; |
53 gset nopolar; | 53 __gset__ nopolar; |
54 | 54 |
55 __errcomm__ ("loglogerr", varargin{:}); | 55 __errcomm__ ("loglogerr", varargin{:}); |
56 | 56 |
57 endfunction | 57 endfunction |