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

« back to all changes in this revision

Viewing changes to man/tdcs/portr3d.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
portr3d           Scilab Group           Scilab Function            portr3d
 
2
NAME
 
3
   portr3d - 3 dimensional phase portrait.
 
4
  
 
5
CALLING SEQUENCE
 
6
 []=portr3d(f,[odem,xdim,npts,pinit])
 
7
PARAMETERS
 
8
 f    : a Scilab external which gives the field of the dynamical system.
 
9
      Hence  it can be a macro name which computes the field at time t and
 
10
      point x [y]=f(t,x,[u]) or a list list(f1,u1) where f1 is a macro of
 
11
      type [y]=f1(t,x,u) or a character string
 
12
      
 
13
 .I rest
 
14
       : The other parameters are optional. If omitted they will be asked
 
15
      interactively
 
16
      
 
17
     odem : gives the integration method to use. The value "default" can
 
18
          be used,  otherwise see ode for a complete set of possibilities
 
19
          
 
20
     npts :  a vector of size (2,10) [number-of-points,step] gives the
 
21
          step for integration  and the number of requested points. The
 
22
          solution will be calculated and drawn  for
 
23
          time=0:step:(step*[number-of-points])
 
24
          
 
25
     xdim : [xmin,xmax,ymin,ymax,zmin,zmax] the boundaries of the graphic
 
26
          frame.
 
27
          
 
28
     pinit
 
29
               : initial values for integration. A set of initial points can be
 
30
          given in a matrix
 
31
          
 
32
               pinit = [x0(1), x1(1),...., xn(1)
 
33
                        x0(2), x1(2),...., xn(2)
 
34
                        x0(3), x1(3),...., xn(3)].
 
35
DESCRIPTION
 
36
   Interactive integration and display of a 3 dimensional phase portrait of
 
37
  a dynamical system  dx/dt=f(t,x,[u]) (where u is an optional parameter )
 
38
  
 
39
SEE ALSO
 
40
   ode
 
41