How to get a return value(or exit code) from matlab

조회 수: 10 (최근 30일)
Cormier
Cormier 2018년 7월 23일
편집: Jan 2018년 7월 23일
I'm trying to retrieve some value from my matlab script just so I can let the system know whether the program worked successfully or not. I'm running the matlab script from the window command line. Also, I wanna send the value through the whole pipeline. Do you have any good idea? Thank you so much in advance.
  댓글 수: 1
Jan
Jan 2018년 7월 23일
편집: Jan 2018년 7월 23일
What exactly is "the whole pipeline"? If you post the command, adjusting it is much easier.

댓글을 달려면 로그인하십시오.

채택된 답변

Jan
Jan 2018년 7월 23일
편집: Jan 2018년 7월 23일
What about writing a file inside Matlab and using its contents from the Windows Command prompt?
Use a function instead of a script for flexibility.
function yourFunction(OutFile)
... do what ever you want
fid = fopen(OutFile, 'w');
if fid == -1
error('Cannot open output file') % Bad bad bad - you cannot see this in the caller!
end
fprintf(fidm 'success\n');
fclose(fid);
end
The run in Windows' command prompt:
matlab -r "yourFunction('C:\Temp\Output.log')"
Now e.g.
set /p Build=<C:\Temp\Output.log
can catch the output.
Another option is to start Matlab with an output file and parse this later:
matlab -wait -logfile output.log

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by