Here are a couple of techniques to improve performance of MATLAB code
Archive for May, 2006
MATLAB hacks
May 30, 2006Merge PostScript files
May 23, 2006Include 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.