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

« back to all changes in this revision

Viewing changes to man/graphics/fplot3d.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
 
fplot3d           Scilab Group           Scilab Function            fplot3d
2
 
NAME
3
 
   fplot3d - 3D plot of a surface defined by a function
4
 
  
5
 
CALLING SEQUENCE
6
 
 fplot3d(xr,yr,f,[theta,alpha,leg,flag,ebox])
7
 
 fplot3d(xr,yr,f,<opt_args>)
8
 
PARAMETERS
9
 
 xr         : row vector of size n1.
10
 
            
11
 
 yr         : row vector of size n2.
12
 
            
13
 
 f          : external of type z=f(x,y).
14
 
            
15
 
 theta,alpha,leg,flag,ebox
16
 
             : see plot3d.
17
 
            
18
 
 <opt_args> : see plot3d.
19
 
            
20
 
DESCRIPTION
21
 
   fplot3d plots a surface defined by the external function f on the grid
22
 
  defined by xr and yr.  Enter the command  fplot3d() to see a demo.
23
 
  
24
 
EXAMPLE
25
 
 deff('z=f(x,y)','z=x^4-y^4')
26
 
 x=-3:0.2:3 ;y=x ;
27
 
 xbasc() ;fplot3d(x,y,f,alpha=5,theta=31)  
28
 
SEE ALSO
29
 
   plot3d
30
 
  
31
 
AUTHOR
32
 
   J.Ph.C.
33