필터 지우기
필터 지우기

How can I pass a variable in an app to basic workspace?

조회 수: 3 (최근 30일)
Bence Salanki
Bence Salanki 2018년 9월 13일
편집: Stephen23 2018년 9월 13일
I have some variables in an app that I would like to use and list in the basic workspace. I am using Matlab 2018a and the AppDesigner, before in the GUI there was evalin(), and assignin() function for that but I tried here the same but it is not working. Any ideas?
Thank you,
  댓글 수: 4
Stephen23
Stephen23 2018년 9월 13일
편집: Stephen23 2018년 9월 13일

"I have a button which connects an instrument to Matlab and I want to store this instrument in a variable and have this variable in the base workspace how would you do that?"

Personally I wouldn't, because processing data in the base workspace from any GUI is quite inefficient. It is much simpler and more efficient to process the data within the GUI.

"It is because the button's callback function doesn't have any output parameters and I can not edit that part."

Callbacks do not return any output arguments. Pass the data between GUI callbacks/workspaces using guidata (if using GUIDE) or nested functions (if sensibly writing your own code). Both of these easily allow you to output any data when the function is called, or when the GUI is closed (see waitfor).

Dennis
Dennis 2018년 9월 13일

I agree with Stephen, if there is no specific reason why you need your variables in base workspace do not bother getting them there.

However i also think there is no easy way to actually get output arguments from appdesigner.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by