Debug and workspace of functions

조회 수: 6 (최근 30일)
M B
M B 2014년 3월 18일
답변: Jacob Halbrooks 2014년 3월 18일
Hello Everybody,
When I run a MATLAB code which includes several function files, the variables I see in workspace are only of the main file (the file that runs the code). I also want to see in workspace local variables of other fuctions. How can I add them to workspace?

답변 (1개)

Jacob Halbrooks
Jacob Halbrooks 2014년 3월 18일
Each function has its own separate workspace of variables, and you do not typically get visibility of the variables outside of your current workspace. However, you can navigate your function call stack to inspect the workspace of each function. For example, put a breakpoint in your code and invoke your function to reach the breakpoint. In the MATLAB Editor, there should be a dropdown control to select where to go in the call stack (or you can do this at the command line using DBUP and DBDOWN). Then use the Workspace browser or WHOS to inspect the variables.

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by