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

« back to all changes in this revision

Viewing changes to man/graphics/plot.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
 
plot             Scilab Group             Scilab Function              plot
2
 
NAME
3
 
   plot - simple plot 
4
 
  
5
 
CALLING SEQUENCE
6
 
 plot(x,y,[xcap,ycap,caption])
7
 
 plot(y)
8
 
PARAMETERS
9
 
 x,y             : two vectors with same sizes
10
 
                 
11
 
 xcap,ycap,caption
12
 
                  : character strings or string matrices 
13
 
                 
14
 
DESCRIPTION
15
 
   Plot y as function of x. xcap and ycap are captions for x-axis  and
16
 
  y-axis respectively and caption is the caption of the plot.  Invoked with
17
 
  only one argument, plot(y) plots the y vector or, if y is a matrix, it
18
 
  plots all its row vectors on the same plot. This plot is done with
19
 
  respect to the vector 1:<number of columns of y>.  plot is obsolete. Use
20
 
  plot2d instead.
21
 
  
22
 
EXAMPLE
23
 
 x=0:0.1:2*%pi;
24
 
 // simple plot
25
 
 plot(sin(x))
26
 
 // using captions
27
 
 xbasc()
28
 
 plot(x,sin(x),"sin","time","plot of sinus")
29
 
 // plot 2 functions
30
 
 xbasc()
31
 
 plot([sin(x);cos(x)])
32
 
SEE ALSO
33
 
   plot2d
34
 
  
35
 
AUTHOR
36
 
   J.Ph.C.
37