File: fcontour.man

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (61 lines) | stat: -rw-r--r-- 1,798 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
.TH fcontour 2 "April 1993" "Scilab Group" "Scilab Function" 
.so ../sci.an
.SH NAME
fcontour - level curves
.SH CALLING SEQUENCE
.nf
fcontour(xr,yr,f,nz,[theta,alpha,caption,flag,bbox,zlev])
fcontour2d(x,y,z,nz,[style,strf,leg,rect,nax])
.fi
.SH PARAMETERS
.TP 10
xr,yr 
: two real vectors of size respectively (1,n1) and (1,n2).
.TP
f
: is an external which gives the analytic expression of the surface.
\fVz=f(x,y)\fR is first computed on the grid specified by \fVxr.yr\fR. Then, control is 
passed to the routine contour.
.TP
nz 
: specifies the level values or number.
.RS
.TP
-
If \fVnz\fR is of size 1, its value considered as
an integer gives the number of level curves equally spaced from zmin to zmax.
.TP
-
If \fVnz\fR is a vector, nz(j) gives the value of the jth level curve.
.RE
.TP
[rest] 
: for \fVtheta,alpha,caption, bbox\fR see \fVplot3d\fR
.TP
flag
: real vector of size 3 ; \fVflag=[mode,type,box]\fR; \fVflag(2)\fR and \fVflag(3)\fR are 
the same as in \fVplot3d\fR; \fVflag(1)\fR has the following meaning :
.RS
.TP 15
flag(1)=0 
: the level curves are drawn on the surface defined by (x,y,z)
.TP
flag(1)=1
: the level curves are drawn on a 3D plot and on the plan defined by 
equation z=zlev
.TP
flag(1)=2 
: The level curves are drawn on a 2D plot.
.RE
.SH DESCRIPTION
Draws the level curves of a surface z=f(x,y). The level curves can be
drawn on a 3D surface or on 2D plot. For level curves on a 2d plot, the function
\fVfcontour2d\fR should be preferred to the function \fVfcontour\fR since
it accepts standard 2d parameters \fV[style,strf,leg,rect,nax]\fR. 
\fVfcontour\fR and \fVfcontour2d\fR call respectively \fVcontour\fR
and \fVcontour2d\fR 
Enter the command \fVfcontour()\fR or \fVfcontour2d\fR to see a demo.
.SH SEE ALSO
contour, contour2d
.SH AUTHOR
J.Ph.C..