No BSD License  

Highlights from
Numerical Methods for Physics

from Numerical Methods for Physics by Alejandro Garcia
Companion Software

lorenz_p.m
clear;  %%% Plot data from lorenz.f %%%
load xplot.dat;  load yplot.dat;  load zplot.dat;
load x_ss.dat;  load y_ss.dat;  load z_ss.dat;
subplot(121)
  plot(xplot,zplot,'-',x_ss,z_ss,'*')
  xlabel('x');  ylabel('z')
subplot(122)
  plot(xplot,yplot,'-',x_ss,y_ss,'*')
  xlabel('x');  ylabel('y')
subplot(111)
title('Phase space projections');

Contact us at files@mathworks.com