Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Calculating time for an external application executated from matlab

1 visualización (últimos 30 días)
LUSSI
LUSSI el 28 de Nov. de 2012
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Hello everybody !
I noticed one thing which i don't understand : I made a batch file to execute a finite element method software and when I execute it manually, the calculation lasts 5 minutes. When I use the dos (or system) function in Matlab to execute the same batch file, the calculating time is 25 minutes !!
I would like to understand why and if a solution exists.
Thank you !
  3 comentarios
LUSSI
LUSSI el 29 de Nov. de 2012
Are you rrunning out of system memory when matlab is open? Nop !
How man processors do you have? 16 cores
Was your computer doing anything else at the same time? Nothing !
Is it repeatable? i.e. does it consistently take 5 times longer? Yes, it's repeatable !
Robert Cumming
Robert Cumming el 30 de Nov. de 2012
what do you get if you type:
tic; system ( 'sleep 3' ); toc

Respuestas (1)

Babak
Babak el 28 de Nov. de 2012
in MATLAB script
tic
% your calcs
time = toc
gives you the time in seconds.

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by