4

我在 Makefile 中使用 MATLAB 将一些数据转换为 eps。但它到处都显示它的标志。

例如,当我输入 bash 时:

matlab -nojvm -nodisplay -nosplash -r "display('derp');exit"

我得到:

                        < M A T L A B (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

我知道 MATLAB 不是 python 可以

python -c "print 'zoom'"

但是有什么方法可以让它停止打印 MATLAB 徽标?

4

1 回答 1

1

好吧,我不是 matlab 专家,但你总是可以做一些丑陋的事情:

matlab -nojvm -nodisplay -nosplash -r "display('derp');exit" | tail -n +10

请注意,“+10”可能会根据您的 Matlab 版本或许可证而改变。例如,对于 Classroom 许可证,有 3 行额外的行。

于 2013-07-07T16:10:03.593 回答