~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to man/graphics/Sgrayplot.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
Sgrayplot          Scilab Group          Scilab Function          Sgrayplot
 
2
NAME
 
3
   Sgrayplot - smooth 2D plot of a surface using colors
 
4
  
 
5
CALLING SEQUENCE
 
6
 Sgrayplot(x,y,z,[strf,rect,nax])
 
7
DESCRIPTION
 
8
   Sgrayplot is the same as grayplot but the plot is smoothed. The function
 
9
  fec is used for smoothing. The surface is plotted assuming that it is
 
10
  linear on a set of triangles built from the grid:
 
11
  
 
12
     ______ 
 
13
     | /| /| 
 
14
     |/_|/_|  
 
15
     | /| /|
 
16
     |/_|/_|
 
17
    Enter the command Sgrayplot() to see a demo.
 
18
  
 
19
EXAMPLE
 
20
 x=-10:10; y=-10:10;m =rand(21,21);
 
21
 Sgrayplot(x,y,m,"111",[-20,-20,20,20])
 
22
 t=-%pi:0.1:%pi; m=sin(t)'*cos(t);
 
23
 xbasc()
 
24
 Sgrayplot(t,t,m)
 
25
SEE ALSO
 
26
   fec, fgrayplot, grayplot, Sfgrayplot
 
27
  
 
28
AUTHOR
 
29
   J.Ph.C.
 
30