Plot a figure in UIAxis AppDesigner

5 views (last 30 days)
Pedro Guincho
Pedro Guincho on 12 Oct 2020
Answered: Mario Malic on 13 Oct 2020
Hello! I'm new to AppDesigner and I'm having problems with ploting my figures, I think I'm missing something.
My code generates figures independently, but I want those figures to be presented on the UIAxis of my app. How can I do that? Will leave the code below.
PLOT 1:
% Button pushed function: TRAINMODELButton
function TRAINMODELButtonPushed(app, event)
load ('7 13 9 7_RF_APP.mat')
app.BaggedEnsemble; %variables of the file
app.b;
app.Yy= Y % [1x54] variable of the file
app.X=[1:1:54];
bar(app.UIAxes5, app.X, app.Yy)
My app has different Tab windows and I'm having trouble passing and storing the information from one tab to another, what is the best way of doing that?
Thank you!

Answers (1)

Mario Malic
Mario Malic on 13 Oct 2020
Does this handle exist, I mean, is it correct
app.UIAxes5
I see no issues with your code. Passing data within the file is the best with properties, as you have already used these, if you need your property 'b', then just refer to it as
app.b

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!