强制Matlab输出到命令行(Force Matlab output to command line)
我正在从Windows命令提示符运行MATLAB脚本:
"C:\Program Files\MATLAB\R2014B\bin\matlab" -nodisplay -nosplash -nodesktop -wait -r "test.m"
test.m很简单:
function test
disp('Hello!');
输出显示在Matlab命令窗口中。 有什么方法可以强制输出到Windows提示符?
I am running a MATLAB script from the Windows command prompt:
"C:\Program Files\MATLAB\R2014B\bin\matlab" -nodisplay -nosplash -nodesktop -wait -r "test.m"
The test.m is simple:
function test
disp('Hello!');
The output is displayed in the Matlab Command Window. Is there any way how I can force output to the windows prompt?
原文:https://stackoverflow.com/questions/40878821
2020-01-03 22:05
满意答案
我找到了一个解决方案:
为方便起见,我会在这里复制一下。 首先,我需要修改matlab脚本以输出到文本文件:
function test
fid=fopen('output.txt','w');
fprintf(fid,'Hello!');
fclose(fid);
然后我应该使用bat文件运行Matlab,并附带一个额外的命令来显示output.txt的内容:
"C:\Program Files\MATLAB\R2014B\bin\matlab" -nodisplay -nosplash -nodesktop -wait -r "test.m"
type output.txt
type命令将在命令窗口中显示'output.txt'的内容。 所以来自@matlabgui的回答几乎就在那里。 谢谢。
它不是一个非常优雅的解决方案,但它的工作原理。
I have found a solution at:
I will replicate it here for convenience. First I need to modify the matlab script to output to a text file:
function test