App Designer: Subplots in uiplane
Show older comments
I want to plot in uipanel in App Designer and crated subplots as shown below. I want to plot in the uipanel and I want the title of the panel to change to the type of analysis I am performing. For example, I have a function that performs Transform domain analysis and display the results in subplots and change the title of the panel. I also have another function subplots are displayed in the same uipanel but with different titles. All this works fine.However, the plots are displayed in a new App window. For example, I have a function called Plots (shown below) which is connected to the App using a callback function. When this function is called, it always plots results in a new App window. I want the results to show in an App from which the function is called.
How could I prevent App designer from opening a new window?
function [] = Plots(inputData)
myMainGUICopy = MainGUI;
ResultsPanel = myMainGUICopy.ResultsPanel;
%
ResultsPanel.Title = 'Transform Domain Representation of Input Data';
%Create Subplots
ax1 = subplot(2,3,1,'Parent',ResultsPanel);
ax2 = subplot(2,3,2,'Parent',ResultsPanel);
ax3 = subplot(2,3,3,'Parent',ResultsPanel);
ax4 = subplot(2,3,4,'Parent',ResultsPanel);
ax5 = subplot(2,3,5,'Parent',ResultsPanel);
ax6 = subplot(2,3,6,'Parent',ResultsPanel);
...
plot(ax1,...)
plot(ax2,...)
...
plot(ax6,...)
4 Comments
Adam Danz
on 28 Jul 2020
What is inputData? Did you rename the app object?
Where does MainGUI come from and what is it? It's not defined within the Plots function and if it's a global variable, it shouldn't be.
Why are you copying the MainGUI variable?
AdiKaba
on 28 Jul 2020
But where does MainGUI come from? Each function has its own workspace so the variable must either be defined within the function or it must be a global variable.
Pass the MainGUI variable to the Plots() function. If the Plots() function is embedded within the App Designer code, then the first input should be app (or whatever you named that variable, if you renamed it). If the Plots() function is external to App Designer, you should pass that variable in as an input. Do not use global variables.
Also, there is no need to copy the MainGUI variable. I don't understand why you would need to do that.
Are the number of subplots and the subplot layout always the same or does that vary?
AdiKaba
on 28 Jul 2020
Accepted Answer
More Answers (0)
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!