I use MATLAB in a Makefile to convert some data to eps. But he displays his logo everywhere.
For example, when I enter in bash:
matlab -nojvm -nodisplay -nosplash -r "display('derp');exit"
I get:
< MATLAB (R) > Copyright 1984-2012 The MathWorks, Inc. R2012a (7.14.0.739) 64-bit (glnxa64) February 9, 2012 To get started, type one of these: helpwin, helpdesk, or demo. For product information, visit www.mathworks.com. derp
I understand that MATLAB is not a python that can just
python -c "print 'zoom'"
but is there a way to stop printing the MATLAB logo?
source share