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

« back to all changes in this revision

Viewing changes to man/graphics/plot3d3.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 plot3d3 2 "April 1993" "Scilab Group" "Scilab Function"
2
 
.so ../sci.an
3
 
.SH NAME
4
 
plot3d3 - mesh plot surface defined by rectangular facets
5
 
.SH DESCRIPTION
6
 
.nf
7
 
plot3d3(X,Y,Z [,vect,theta,alpha,leg,flag,ebox])
8
 
plot3d3(X,Y,Z, <opt_args>)
9
 
.fi
10
 
.SH PARAMETERS
11
 
.TP 10
12
 
X,Y,Z
13
 
: 3 real matrices
14
 
.TP
15
 
vect
16
 
: real vector
17
 
.TP
18
 
flag
19
 
:  flag=[type,box], type and box have the same meaning as in plot3d.
20
 
.TP
21
 
<opt_args>
22
 
: This represents a sequence of statements \fVkey1=value1,
23
 
key2=value2\fR,... where \fVkey1\fR, \fVkey2,...\fR can be one of the
24
 
following: vect,flag (see above), theta, alpha ,leg,ebox (see \fVplot3d\fR)
25
 
 
26
 
.SH DESCRIPTION
27
 
\fVplot3d3\fR performs a mesh plot of a surface defined by rectangular facets.
28
 
(X,Y,Z) are three matrices which describe a surface.
29
 
The surface is composed of four sided polygons. 
30
 
.LP
31
 
The X-coordinates of a facet are given by X(i,j),X(i+1,j),X(i,j+1),X(i+1,j+1).
32
 
And similarly Y and Z are Y and Z coordinates.
33
 
.LP
34
 
The \fVvect\fR vector is used when multiple surfaces are coded 
35
 
in the same (X,Y,Z) matrices. \fVvect(j)\fR gives the line 
36
 
at which the coding of the jth surface begins. 
37
 
See \fVplot3d2\fR for a full description.
38
 
.SH EXAMPLE 
39
 
.nf
40
 
u = linspace(-%pi/2,%pi/2,40);
41
 
v = linspace(0,2*%pi,20);
42
 
X = cos(u)'*cos(v);
43
 
Y = cos(u)'*sin(v);
44
 
Z = sin(u)'*ones(v);
45
 
plot3d3(X,Y,Z);
46
 
.fi
47
 
.SH SEE ALSO
48
 
plot3d2, plot3d, param3d
49
 
 
50