How to pass gui output to workspace?

18 ビュー (過去 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 Center および File ExchangeMigrate GUIDE Apps についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by