This exam is open book, open notes. You can also use Matlab, the library, or the Web. And you can ask me if you have questions about any of the problems. But you may not discuss the exam with anyone else.
Please type your answers; handwritten answers will not be accepted. Hand in hardcopy at the start of class on October 17.
clear myhist
for t = 1 : 350
... compute some stuff, then:
myhist(t,1) = x1(t);
myhist(t,2) = mu1(t);
myhist(t,3) = x2(t);
myhist(t,4) = mu2(t);
myhist(t,5) = ... etc.
end
plot(myhist(:,1:2)) % plot x1(t) and mu1(t)
legend('x1','mu1')
Note: if you're handing in black-and-white printouts, use a solid line
for one variable and a dashed line for the other.