workspace variable

9 visualizaciones (últimos 30 días)
Baba
Baba el 15 de Nov. de 2011
My program stores data in a workspace variable. The variable is visible only when the program is done running. I was wondering if it's possible to see that workspace variable in the workspace window as the pgrogram is running and see it's content grow.

Respuesta aceptada

Doug Hull
Doug Hull el 15 de Nov. de 2011
You could put a pause statement or debug. MATLAB is not going to take the time to update the WS viewer. How long does your code take to run?
  3 comentarios
Baba
Baba el 15 de Nov. de 2011
so can i just pause the execution at any time? and then restart to continue?
Walter Roberson
Walter Roberson el 15 de Nov. de 2011
A pause() statement with no argument will wait for keyboard input before resuming.
You can also use keyboard():
KEYBOARD, when placed in an M-file, stops execution of the file
and gives control to the user's keyboard. The special status is
indicated by a K appearing before the prompt. Variables may be
examined or changed - all MATLAB commands are valid. The keyboard
mode is terminated by executing the command RETURN (i.e. typing
the six letters R-E-T-U-R-N and pressing the return key). Control
returns to the invoking M-file.

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 15 de Nov. de 2011
If your program takes 10 minutes to run, that variable probably gets changed a bazillion times. Maybe you can plot it. You can use a line plot if you keep track of every value that variable takes on, or maybe just use a bar chart or text label if you just want to show the latest value. Make sure you issue the "drawnow" command right after you update your plot or text with the new value(s).

Categorías

Más información sobre Desktop 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