Matlab is a silly language
Apr. 6th, 2009 03:55 amplot(record{3}.nEvals,record{3}.objec)does not work (I get a colorful straight line).
o = record{3}.objec; n = record{3}.nEvals; plot(n,o)works: I get the curve I'm looking for.
Other concerns: I'd like to pass objects by reference, and avoid implementing my own data structures (List anyone?).
I'm hoping to switch to NumPy this summer. They say the syntax is remarkably similar, and I'd mostly only have to worry about array bounds (Matlab counts from 1, Python from 0).