Matlab from Command promt

5 visualizaciones (últimos 30 días)
john birt
john birt el 24 de Mzo. de 2012
Respondida: Bibhav Poudel el 11 de Dic. de 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

Respuesta aceptada

Oleg Komarov
Oleg Komarov el 24 de Mzo. de 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.

Más respuestas (1)

Bibhav Poudel
Bibhav Poudel el 11 de Dic. de 2019
license

Categorías

Más información sobre Performance and Memory en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by