Azzera filtri
Azzera filtri

Matlab from Command promt

6 visualizzazioni (ultimi 30 giorni)
john birt
john birt il 24 Mar 2012
Risposto: Bibhav Poudel il 11 Dic 2019
So I have a matlab function
function F = myfun5(x)
F = x+5;
exit;
and when I run this from the Windows Command Line
matlab nosplash -r myfun5(3) -logfile c:\temp\logfile
It all works, but the log file is empty, it does not include the answer

Risposta accettata

Oleg Komarov
Oleg Komarov il 24 Mar 2012
matlab -nosplash -nodesktop -minimize -r "a = myfun5(3), exit" -logfile C:\logfile.txt
where
function F = myfun5(x)
F = x+5;
end
otherwise it exits before returning the value to the cmd window.

Più risposte (1)

Bibhav Poudel
Bibhav Poudel il 11 Dic 2019
license

Categorie

Scopri di più su Performance and Memory in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by