필터 지우기
필터 지우기

How do I view the function workspace?

조회 수: 107 (최근 30일)
Adwait
Adwait 2014년 6월 18일
댓글: Image Analyst 2021년 11월 18일
I have several functions in my script. When I run the script, the variables do not show up in the base workspace. I don't know how to view the function workspace, hence I can't see the values of my function variables.
  댓글 수: 3
Walter Roberson
Walter Roberson 2016년 6월 3일
global variables are accessible only in routines that also declare the variable to be global.
daniel
daniel 2017년 1월 30일
brake point and step in to the function, will show everything

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

채택된 답변

Sean de Wolski
Sean de Wolski 2014년 6월 18일
Your answer with the breakpoints is the best one. Another way would be to use the whos command inside of the function:
whos

추가 답변 (1개)

Image Analyst
Image Analyst 2014년 6월 18일
Put this command as a line in your script or function
workspace;
  댓글 수: 5
Jeff Bull
Jeff Bull 2021년 11월 18일
Having the same issue but adding workspace; to the .m file did not work. still cannot see the variables of the function from the command line.
Image Analyst
Image Analyst 2021년 11월 18일
@Jeff Bull, do you see the workspace panel? If it was not up, then calling worskapce should show it. And it should show the current values of the variables. If it can't show them all in the workspace, you can double click on the variable name in the workspace to bring it up in the variable editor where you'll be able to see more values of it.
If you set a breakpoint on the line where you call your function you should see in values of the input arguments both in the workspace panel, and in a popup when you hover your cursor over the variables in the source code panel. Are you saying that neither of these methods display the values? Worst vase you can double click the variable name (to select it) and type F9 to show it in the command window, or you can just type the name on the command line.

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

카테고리

Help CenterFile Exchange에서 Whos에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by