How to get the variables into workspace while running GUI?

5 Ansichten (letzte 30 Tage)
Nithya
Nithya am 11 Mär. 2014
Kommentiert: Chandrasekhar am 12 Mär. 2014
I have small functions and scripts inside my GUI. When i run my GUI I cannot see any variables and its datas in my workspace. Therefore my programs are getting error while running GUI. Is there any command that would help me.

Akzeptierte Antwort

David Sanchez
David Sanchez am 11 Mär. 2014
There are several things you can do. To see the value of a variable in the workspace, do not write the semicolon, that will present the variable and its value in runtime. You can also declare global variables within your functions.
doc global
for examples and full documentation
  2 Kommentare
Nithya
Nithya am 12 Mär. 2014
Actually its a very big matrix so i dont want it to be diplayed in command screen.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Chandrasekhar
Chandrasekhar am 11 Mär. 2014
use the command
evalin('base','who');

Community Treasure Hunt

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

Start Hunting!

Translated by