From not very in-depth research there seems to be no way to color strings being output to the terminal in Matlab when …
Category: Programming
C++ Pipeline for Learning Fisher Vectors Using VLFeat
I implemented a C++ pipeline for learning Fisher feature vectors using VLFeat since Matlab should be avoided whenever possible. Also I found …
Benchmarking Python fancy indexing vs. taken
I recently discovered that fancy indexing is not that fast in Python. If you do a lot of it, it can eat …
BubbleSort: Computer Science Zines
Came across this on Kickstarter. Awesome.
Why Latex is broken and what needs to be fixed
Having programmed too much HTML and CSS gets your mindset gets warped; in the right direction. You start to believe religiously that …
Saving from inside a parfor loop in Matlab
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 …
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 …
Debugging in Matlab
Getting in to someones code or just cleaning up your own Matlab code it’s good to know how to do break points …
Wrapper function in Matlab for plotting multidimensional functions in 3D
I have often encountered situation where I want to plot a function in 3D but it either takes multidimensional input or the …