matlab提示output,强制Matlab输出到命令行(Force Matlab output to command line)

本文介绍如何在运行MATLAB脚本时,将输出从MATLAB命令窗口重定向到Windows命令提示符。通过修改MATLAB脚本,使其将输出写入文本文件,然后在批处理文件中使用`type`命令显示文本文件内容,实现了这一目标。虽然不是优雅的解决方案,但确实有效。
摘要由CSDN通过智能技术生成

强制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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值