필터 지우기
필터 지우기

Variables not appearing in workspace

조회 수: 45 (최근 30일)
Tomas
Tomas 2013년 12월 5일
답변: Aaron 2023년 2월 3일
I created a MATLAB script that should create some variables, and they only appear in the workspace when i use CRTL+C and finish the programm. I dont think that they're availabe in the progress of the program because it doesn´t work the way it should
  댓글 수: 1
José-Luis
José-Luis 2013년 12월 5일
Have you tried using the debugger?

댓글을 달려면 로그인하십시오.

답변 (4개)

Image Analyst
Image Analyst 2013년 12월 5일
I bet they are and you just need to view this: http://blogs.mathworks.com/videos/2012/07/03/debugging-in-matlab/
  댓글 수: 1
Image Analyst
Image Analyst 2013년 12월 5일
Do you know that there are different workspaces? A base workspace, where variables from scripts go, and local workspaces that exist only when a function is being run and vanish once you leave the function.

댓글을 달려면 로그인하십시오.


Juliana  Corlier-Bagdasaryan
Juliana Corlier-Bagdasaryan 2017년 11월 6일
편집: Juliana Corlier-Bagdasaryan 2017년 11월 6일
I have a related problem of variables not appearing in the workspace, but which has nothing to do with functions. If I manually create any variable (like 'test = 5'), it would not be visible in the workspace window. However, if I list variables (using 'who' or 'whos') all variables would show up. I never had this problem before, only after updating to Matlab 2017b.
I definitely think this is a bug or me misunderstanding some newly released functionality. I have tried re-installing Matlab, which helped at first. But eventually the problem returned after a few Matlab sessions (Not sure if this is somehow related to the debug mode?).
Any ideas welcome. Thanks.
  댓글 수: 6
Image Analyst
Image Analyst 2020년 4월 25일
Why is no one using psr to show us screen captures? It does not good if you just same "same here" - that does not give me any information to try to help you.
FAS
FAS 2022년 3월 2일
I have attached the recording for the screen. I am facing the same problem. The variables are not appearing in the workspace when I run the .m file.

댓글을 달려면 로그인하십시오.


HARMONY MNCUBE
HARMONY MNCUBE 2020년 5월 30일
dbstop if error

Aaron
Aaron 2023년 2월 3일
Also seems to depend on scoping, so a variable defined inside of a for loop for example, will not show up in the workspace afterwards (even though the iterator value is, assuming it hasn't been cleared).
Try defining outside of a dedicated scope like a loop or function.

카테고리

Help CenterFile Exchange에서 Debugging and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by