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

« back to all changes in this revision

Viewing changes to man/graphics/fplot3d1.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
fplot3d1          Scilab Group          Scilab Function            fplot3d1
 
2
NAME
 
3
   fplot3d1 - 3D gray or color level plot of a surface defined by a function
 
4
  
 
5
CALLING SEQUENCE
 
6
 fplot3d1(xr,yr,f,[theta,alpha,leg,flag,ebox])
 
7
 fplot3d1(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 plot3d1.
 
17
            
 
18
 <opt_args> : see plot3d. 
 
19
            
 
20
DESCRIPTION
 
21
   fplot3d1 plots a 3D gray or color level plot of a surface defined by the 
 
22
  external function f on the grid defined by xr and yr.  Enter the command 
 
23
  fplot3d1() to see a demo.
 
24
  
 
25
EXAMPLE
 
26
 deff('z=f(x,y)','z=x^4-y^4')
 
27
 x=-3:0.2:3 ;y=x ;
 
28
 xbasc() ;fplot3d1(x,y,f,alpha=5,theta=31)  
 
29
SEE ALSO
 
30
   plot3d1
 
31
  
 
32
AUTHOR
 
33
   J.Ph.C.
 
34