How can I export app data in the workspace?

12 views (last 30 days)
Hi, I created an App using app designer but the calculated variables do not appear in the workspace. Is it possible to export the data into the workspace so that another user may customize an analysis from the calculated data? I have tried using public properties but it is still not possible to call the data into the workspace.

Accepted Answer

Darshan Ramakant Bhat
Darshan Ramakant Bhat on 18 Apr 2017
There are multiple options. You can use one of the following
  • assignin
  • export2wsdlg.
  • save it in a mat file.
Please look at the following answer thread:
  1 Comment
Letchi Anoman
Letchi Anoman on 20 Apr 2017
Great! The assignin function works. I have to write it
assignin('base', 'NameOfNewVariable', AppVariable)
Thanks a lot

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!