Sharing Variables between app and matlab workspace?

Hey community,
I have developed an app with the app designer, I am wondering if there's any way to preview and manipulate the variables generated by the app in matlab's main space.
Thanks in advance

4 Kommentare

Rik
Rik am 15 Aug. 2022
Is it the intention that the app is still open and can be used to generate new outputs? Or is it a more linear workflow?
Farid
Farid am 16 Aug. 2022
Let's say I have a button in my app that generates an array called "app.signal" and I want to analyse it with Matlab's signal processing app. it can't be done unless the array is available in the workspace. wanted to know if it is possible to have the variable in the workspace directly. thanks
My debugging work-around for situations like that is commonly to global a name at the command line, and assign the desired value to the name. Doing so effectively inserts the name into the visible workspace even if it was a "static" workspace (a function that had an "end" matching its "function" line, which is a situation where you cannot just assign to workspace variables in the debugger.)
Farid
Farid am 17 Aug. 2022
Thank you Walter.

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Bruno Luong
Bruno Luong am 16 Aug. 2022
Put this statement after you generate your data in the callback
mydata = ...
assignin('base', 'mydata')

Weitere Antworten (0)

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2021b

Gefragt:

am 15 Aug. 2022

Kommentiert:

am 17 Aug. 2022

Community Treasure Hunt

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

Start Hunting!

Translated by