Geting a varible defined in AppDesigner into a script

1 次查看(过去 30 天)
Using appdesigner I have developed a GUI that runs pretty good. I now want to take some variables that are defined in the app code and use them in a script I am developing. How do I do this? This is a function that is in the app designer and I want to use "NewInterval" in my script.
methods (Access = public)
function WhatIntervalSelected (app, ~)
if app.Interval1Button.Value == true;
NewInterval =1;
elseif app.Interval2Button.Value == true
NewInterval =2 ;
elseif app.Interval3Button.Value == true;
NewInterval =3;
elseif app.Interval4Button.Value == true
NewInterval =4;
elseif app.Interval5Button.Value == true
NewInterval =5;
else
NewInterval = 6;
end
end
How do I get NewInterval into my MATLAB Script?

采纳的回答

Mario Malic
Mario Malic 2020-10-12
编辑:Mario Malic 2020-10-12
You have few options, depending on the complexity of your app, I could suggest you to get the app instance in your script.
Set a Tag, or a unique name for your app in Component Browser, under UIFigure - Identifiers, and get its handle this way:
% in script
app = get(findall(0, 'Tag', 'AppUIFigure'), 'RunningAppInstance');
% ^^^^^^^^^^^
Set your NewInterval as a property, and just call it within your script as
app.NewInterval
You can also convert your script to function that you pass the NewInterval property (must define it that way too), but this is a bit of a hassle and not necessary.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by