If you call save from a parfor loop in Matlab, like this for example: parfor k=1:100 foo = exp(-k); save([’myfile’,num2str(k),’.mat’],’foo’); endparfor k=1:100 …
Category: Note to Self
The psychology of debugging – the bias of complexity
Most of the times when you are writing code you are make mistakes either in the structure or in the specific code. …
The most awesome terminal bash command!
So Matlab has this really nice feature that if you type the start of a command in the terminal window and then …