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

« back to all changes in this revision

Viewing changes to man/graphics/sgrid.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
 
sgrid            Scilab Group            Scilab Function              sgrid
2
 
NAME
3
 
   sgrid - s-plane grid lines.
4
 
  
5
 
CALLING SEQUENCE
6
 
 sgrid()
7
 
 sgrid('new')
8
 
 sgrid(zeta,wn [,color])
9
 
DESCRIPTION
10
 
   Used in conjonction with evans,  plots lines of constant damping ratio
11
 
  (zeta) and natural frequency (wn).
12
 
  
13
 
 sgrid()
14
 
       : add a grid over an existing continuous s-plane root with default values
15
 
      for zeta and wn.
16
 
      
17
 
 sgrid('new')
18
 
       : clears the graphic screen and then plots a default  s-plane grid 
19
 
      
20
 
 sgrid(zeta,wn [,color])
21
 
       : same as sgrid() but uses the provided damping ratio and  natural
22
 
      frequency.
23
 
      
24
 
EXAMPLE
25
 
 H=syslin('c',352*poly(-5,'s')/poly([0,0,2000,200,25,1],'s','c'));
26
 
 evans(H,100)
27
 
 sgrid()
28
 
 sgrid(0.6,2,7)
29
 
SEE ALSO
30
 
   evans  
31