MATLAB integration

This is a test of using MATLAB from the notebook.


In [ ]:
% A simple test:
A = rand(5)

In [ ]:
t = linspace(0,6*pi,100);
plot(sin(t))
grid on
hold on
plot(cos(t), 'r')