What is your favourite MATLAB/Octave programming trick? -


i think agree matlab language not pretty, or particularly consistent. nevermind! still have use things done.

what favourite tricks making things easier? let's have 1 per answer people can vote them if agree. also, try illustrate answer example.

using built-in profiler see hot parts of code are:

profile on % lines of code profile off profile viewer 

or using built in tic , toc quick timings:

tic; % lines of code toc; 

Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -