File: anim3.dem

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (25 lines) | stat: -rw-r--r-- 640 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright INRIA
mode(1)
kp=xget("pixmap");xset("pixmap",1);
dr=driver();
if driver()=='Rec' then driver('X11'),end //unset memorisation

//compute lorenz differential eqn solution
y=ode(1.e-8*[1;1;1],0,0:0.003:50,'loren'); 
[n1,n2]=size(y)	;
wid=xget("white");
q=1:(n2/wid); //select color for each link
ds=xget("dashes");

param3d(y(1,:),y(2,:),y(3,:),35,45,'X@Y@Z',[2,4]);
for i=35:5:80,
  xset("wwpc");  //erase
  for j=1:wid;
    xset("dashes",j);
    tt= ((j-1)*(n2/wid)+1):(j*(n2/wid));
    param3d(y(1,tt),y(2,tt),y(3,tt),i,45,'X@Y@Z',[0,0]);
  end	
  xset("wshow");  //show
end
xset("dashes",ds(1));xset("pixmap",kp);driver(dr)