Archive for May, 2006

MATLAB hacks

May 30, 2006

Here are a couple of techniques to improve performance of MATLAB code

Merge PostScript files

May 23, 2006

Include a bash function in your .bashrc as

psjoin()
{
gs -dNOPAUSE -sDEVICE=pswrite -sOutputFile=out.ps $@ -c quit

echo Output saved as out.ps
}

To use in bash:
> psjoin myFigs*.eps myPS*.ps

Also, I’ve just discovered a latex() function in MATLAB which returns latex code for any symbolic expression.

NIPS paper evaluation criteria

May 22, 2006