How to pass gui output to workspace?

조회 수: 16 (최근 30일)
Curious Mind
Curious Mind 2020년 7월 20일
댓글: Stephen23 2020년 7월 23일
Hello, I am trying to develop a gui using matlab app designer. 1. How do I write the code such that the output of a push button appears in the workspace? 2. I used the property tool to share data across but for some reason this only works if the output is physically present in the workspace. The output is a structure called F. How do I correct this? I am using evalin(‘base’, ‘F’) in the property section. If I can find a way to make the output appear in the workspace then the app will work fine.
Thank you
  댓글 수: 2
Roger J
Roger J 2020년 7월 21일
I was able to create and write to a variable in the base workspace using the following:
% Button pushed function: Button
function ButtonPushed(app, event)
str = sprintf('%s called (%s)',"ButtonPushed",char(datetime));
assignin('base','myF',str)
end
"ButtonPushed()" is the callback for a button.
Let me know if it works for you.

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

채택된 답변

Anirudh Singh
Anirudh Singh 2020년 7월 23일
You can use "assignin" function to store data in the workspace either 'base' or 'caller' depending upon your requirements.
For more information check the documentation link for "assignin" function: https://www.mathworks.com/help/matlab/ref/assignin.html

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by