Clear Filters
Clear Filters

App designer opening new figure

15 views (last 30 days)
Gonçalo Torres
Gonçalo Torres on 30 Mar 2020
Commented: Jonas Bauer on 23 Oct 2020
Hi all.
I am currently developing a GUI with App Designer
I want to plot some data in an exsiting axes of my app. I am using the following code for that:
if app.Settings.Odds.PlotVal
app.GUI.Market {iM} .pVal = plot (app.GUI.Market {iM} .Axes, newTime, Val (1,1));
backName = 'Back' ;
end
The data are plotted in the axes I want, but at the same time, a new blank figure pops-up, and I have to close it everytime.
Am I doing anything wrong?
Thanks
Gonçalo

Accepted Answer

Thi Ng
Thi Ng on 22 Apr 2020
Hi Gonçalo,
Check the rest of your script if it contains any label, legend, title, etc. info, which you forgot to delete. Any of those will trigger an empty plot to open.
Best,
Thi
  2 Comments
Gonçalo Torres
Gonçalo Torres on 27 Apr 2020
The problem was a "hold on" that I forgot to remove.
Thanks for the answer
Jonas Bauer
Jonas Bauer on 23 Oct 2020
Same for me. Just check for
hold on

Sign in to comment.

More Answers (0)

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!