Table of Contents

Matlab and Circuits

This is a temporary page that contains notes and comments about topics that might be useful to us.

Books and Websites

http://www.seas.upenn.edu/~jan/matlab/Matlab.html

http://www.ece.ubc.ca/~msucu/documents/matlab/circuits%20solutions%20with%20matlab.pdf

http://www.ee.hacettepe.edu.tr/~solen/Matlab/MatLab/Matlab%20-%20Electronics%20and%20Circuit%20Analysis%20using%20Matlab.pdf

http://booksite.elsevier.com/9780750659321/exercises/SpiceAndMatlab.pdf

Matlab code snippet

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)