Can I save calculations performed in App Designer to the workspace?

4 ビュー (過去 30 日間)
danbro
danbro 2017 年 2 月 10 日
回答済み: Thomas Fournier 2021 年 8 月 11 日
Hi, I am creating an application which performs calculations based on user inputs and plots it on a graph. I would like to add a button that saves or exports the graph data to the MATLAB workspace (alternatively save it as a .mat file in a specified directory). Any ideas on how to do this? /danbro
  2 件のコメント
danbro
danbro 2017 年 2 月 10 日
I figure it out based on another thread with a similar question. I first declared a variable inside a private property and then used the function assignin() in a callback to generate the calculations to the workspace.
Stetson Spencer
Stetson Spencer 2018 年 11 月 21 日
Hey would you mind sending me a link to the thread. I have a similar question also

サインインしてコメントする。

回答 (1 件)

Thomas Fournier
Thomas Fournier 2021 年 8 月 11 日
You can use the command "assignin"
for exemple, here is a button's callback that send all the app data to the workspace:
function Send2workspaceButtonPushed(app, event)
assignin("base","app",app);
end

カテゴリ

Help Center および File ExchangeDevelop 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