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

« back to all changes in this revision

Viewing changes to man/graphics/fcontour2d.man

  • 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
 
.TH fcontour2d 2 "April 1993" "Scilab Group" "Scilab Function"
2
 
.so ../sci.an
3
 
.SH NAME
4
 
fcontour2d - level curves of a surface defined by a function on a 2D plot
5
 
.SH CALLING SEQUENCE
6
 
.nf
7
 
fcontour2d(xr,yr,f,nz,[style,strf,leg,rect,nax])
8
 
fcontour2d(xr,yr,f,nz,<opt_args>)
9
 
.fi
10
 
.SH PARAMETERS
11
 
.TP 7
12
 
xr,yr 
13
 
: two real row vectors of size n1 and n2.
14
 
.TP
15
 
f
16
 
: is an external which defines the surface
17
 
\fVz=f(x,y)\fR. It is first computed on the grid specified by
18
 
\fVxr,yr\fR. Then, control is passed to the routine \fVcontour2d\fR.
19
 
.TP
20
 
nz 
21
 
: the level values or the number of levels.
22
 
.RS
23
 
.TP 3
24
 
-
25
 
If \fVnz\fR is an integer, its value gives the number of level curves 
26
 
equally spaced from zmin to zmax.
27
 
.TP
28
 
-
29
 
If \fVnz\fR is a vector, \fVnz(i)\fR gives the value of the ith level curve.
30
 
.RE
31
 
<opt_args>
32
 
: This represents a sequence of statements \fVkey1=value1,
33
 
key2=value2\fR,... where \fVkey1\fR, \fVkey2,...\fR can be one of the
34
 
following: style, leg, rect, nax, strf or axesflag and frameflag (see plot2d)
35
 
.TP
36
 
[style,strf,leg,rect,nax]
37
 
: see \fVcontour2d\fR.
38
 
.SH DESCRIPTION
39
 
Draws level curves of a surface \fVz=f(x,y)\fR. The level curves are
40
 
drawn on a 2D plot. The surface is given by the external function
41
 
\fVf\fR. See \fVcontour2d\fR.
42
 
 
43
 
Enter the command \fVfcontour2d()\fR to see a demo.
44
 
.SH EXAMPLE
45
 
.nf
46
 
deff('z=surf(x,y)','z=x^4-y^4')
47
 
x=-3:0.1:3;
48
 
y=x;
49
 
fcontour2d(x,y,surf,10);
50
 
.fi
51
 
.SH SEE ALSO
52
 
contour, contour2d, fcontour
53
 
.SH AUTHOR
54
 
J.Ph.C.