~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/graphics/plot2d4.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
plot2d4           Scilab Group           Scilab Function            plot2d4
2
 
NAME
3
 
   plot2d4 - 2D plot (arrows style)
4
 
  
5
 
CALLING SEQUENCE
6
 
 plot2d4([logflag,] x,y,[style,strf,leg,rect,nax])
7
 
 plot2d4(y)
8
 
 plot2d4(x,y <,opt_args>)
9
 
PARAMETERS
10
 
   [ ] : see plot2d for a description of parameters.
11
 
  
12
 
DESCRIPTION
13
 
   plot2d4 is the same as plot2d but curves are plotted using arrows style.
14
 
  This can be useful when plotting solutions of an ODE in a phase space. 
15
 
  By default, successive plots are superposed. To clear the previous plot, 
16
 
  use xbasc().  Enter the command plot2d4() to see a demo.
17
 
  
18
 
EXAMPLE
19
 
 // compare the following with plot2d1
20
 
 x=[0:0.1:2*%pi]';
21
 
 plot2d4(x,[sin(x) sin(2*x) sin(3*x)])
22
 
SEE ALSO
23
 
   fchamp, plot2d, plot2d2, plot2d3, subplot, xbasc, xset
24
 
  
25
 
AUTHOR
26
 
   J.Ph.C.
27