File: fplot3d.cat

package info (click to toggle)
scilab 2.6-4
  • links: PTS
  • area: non-free
  • in suites: woody
  • size: 54,632 kB
  • ctags: 40,267
  • sloc: ansic: 267,851; fortran: 166,549; sh: 10,005; makefile: 4,119; tcl: 1,070; cpp: 233; csh: 143; asm: 135; perl: 130; java: 39
file content (33 lines) | stat: -rw-r--r-- 805 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
fplot3d           Scilab Group           Scilab Function            fplot3d
NAME
   fplot3d - 3D plot of a surface defined by a function
  
CALLING SEQUENCE
 fplot3d(xr,yr,f,[theta,alpha,leg,flag,ebox])
 fplot3d(xr,yr,f,<opt_args>)
PARAMETERS
 xr         : row vector of size n1.
            
 yr         : row vector of size n2.
            
 f          : external of type z=f(x,y).
            
 theta,alpha,leg,flag,ebox
             : see plot3d.
            
 <opt_args> : see plot3d.
            
DESCRIPTION
   fplot3d plots a surface defined by the external function f on the grid
  defined by xr and yr.  Enter the command  fplot3d() to see a demo.
  
EXAMPLE
 deff('z=f(x,y)','z=x^4-y^4')
 x=-3:0.2:3 ;y=x ;
 xbasc() ;fplot3d(x,y,f,alpha=5,theta=31)  
SEE ALSO
   plot3d
  
AUTHOR
   J.Ph.C.