MATLAB

A small digression from the main topic of this blog – dogs coding in C++ – to highlight a small portion of the ugliness in the MATLAB syntax. Let’s assign a variable: >> A = 2 A = 2 >> disp(A)      2 >> disp(eval(‘A’))      2 Ok, so A equals eval(‘A’). What about: >> eval(‘B = 3’) B …

Continue reading Let’s talk about MATLAB…