Mercurial > hg > octave-lyh
comparison scripts/plot/plot3.m @ 14335:ce2b59a6d0e5
maint: periodic merge of stable to default.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sun, 05 Feb 2012 15:32:24 -0800 |
parents | 4506eade9f04 4d917a6a858b |
children | f3d52523cde1 |
comparison
equal
deleted
inserted
replaced
14333:6dd710b73150 | 14335:ce2b59a6d0e5 |
---|---|
72 ## | 72 ## |
73 ## An example of the use of @code{plot3} is | 73 ## An example of the use of @code{plot3} is |
74 ## | 74 ## |
75 ## @example | 75 ## @example |
76 ## @group | 76 ## @group |
77 ## z = [0:0.05:5]; | 77 ## z = [0:0.05:5]; |
78 ## plot3 (cos(2*pi*z), sin(2*pi*z), z, ";helix;"); | 78 ## plot3 (cos (2*pi*z), sin (2*pi*z), z, ";helix;"); |
79 ## plot3 (z, exp(2i*pi*z), ";complex sinusoid;"); | 79 ## plot3 (z, exp (2i*pi*z), ";complex sinusoid;"); |
80 ## @end group | 80 ## @end group |
81 ## @end example | 81 ## @end example |
82 ## @seealso{plot, xlabel, ylabel, zlabel, title, print} | 82 ## @seealso{plot, xlabel, ylabel, zlabel, title, print} |
83 ## @end deftypefn | 83 ## @end deftypefn |
84 | 84 |