This is a temporary page that contains notes and comments about topics that might be useful to us.
http://www.seas.upenn.edu/~jan/matlab/Matlab.html
http://www.ece.ubc.ca/~msucu/documents/matlab/circuits%20solutions%20with%20matlab.pdf
http://booksite.elsevier.com/9780750659321/exercises/SpiceAndMatlab.pdf
Here is an example of including matlab code
% simple script file that plots a sin wave t = [0:.01:10]; v = sin(t); plot(t,v)