This media was created with Scilab, a free open-source software.
Here is a listing of the Scilab source used to create this file.
clear;//Parametersa=0.1;b=0.1;c=4;functiondx=RSLR(t,x)dx(1)=-x(2)-x(3);dx(2)=x(1)+a*x(2);dx(3)=b+x(1)*x(3)-c*x(3);endfunction// The time range and step for calculationTin=0;Tout=1000;Tstep=0.001;T=Tin:Tstep:Tout;// The initial valuesx0=-6;y0=6;z0=0;X0=[x0;y0;z0];X=ode(X0,0,T,RSLR);// The time range for graphingTmid=500;Tpmax=size(T,2);Tpmin=size([Tin:Tstep:Tmid],2);Tplot=[Tpmin:Tpmax];clfparam3d(X(1,Tplot),X(2,Tplot),X(3,Tplot))xlabel('x')ylabel('y')zlabel('z')