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

« back to all changes in this revision

Viewing changes to demos/ode/lorenz.dem

  • 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
deff('[ydot]=lorenz(t,y)',...
 
2
// Copyright INRIA
 
3
"x=y(1);...
 
4
a=[-10,10,0;28,-1,-x;0,x,-8/3];...
 
5
ydot=a*y")
 
6
deff('[j]=jacobian(t,y)',...
 
7
"x=y(1);yy=y(2);z=y(3);...
 
8
j=[-10,10,0;28-z,-1,-x;-yy,x,-8/3]")
 
9
y0=[-3;-6;12];t0=0;step=0.01;t1=10;
 
10
instants=t0:step:t1;
 
11
y=ode(y0,t0,instants,lorenz,jacobian);
 
12
xbasc(0);param3d(y(1,:),y(2,:),y(3,:))
 
13
 
 
14