How to use ga() without generating a prepopulated figure with stop and pause button with matlab app

4 次查看(过去 30 天)
I am trying to build a matlab app which uses the ga function for genetic optimization. It is possible to define an own plotfcn (in this case plotnd) which is called every time a generation is built.
options = optimoptions('ga');
% Some Code
options = optimoptions(options,'PlotFcn', @plotnd);
% Some Code
[x,fval,exitflag,output,population,score]=ga(..... ,options);
I use this function to plot the best individual inside of my matlab app UIAxes object:
function state = plotnd(options, state, flag)
% Some Code (generate Data to plot out of state)
% Find Running Matlab App
app = get(findall(0, 'Name', 'MyMatlabApp'), 'RunningAppInstance');
% Get UIAxes of Matlab App
ax = app.OptimizationPlot;
% Plot Data From state Within UIAxes
plot(Data.X,Data.Y,'Parent', ax)
% Some Code
end
The function plotnd is called and the Data (Data.X and Data.Y) is plotted correct in my matlab app.
However, everytime the plotnd function is called, matlab opens a UI Figure populated with a stop and a pause button.
Is there any way, that matlab is not opening this figure? I want to create my own stop and pause buttons within my matlab app.
Thank you in advance!

采纳的回答

Alan Weiss
Alan Weiss 2020-12-4
If you don't want the buttons, then use an output function instead of a plot function. See Custom Output Function for Genetic Algorithm.
Alan Weiss
MATLAB mathematical toolbox documentation

更多回答(1 个)

Benjamin Kraus
Benjamin Kraus 2020-12-3
This looks like a limitation of the ga code that creates the buttons, as I can't see any way to control where those buttons are placed or whether they are created at all. I suggest contact MathWorks Technical Support to request this as an enhancement.

类别

Help CenterFile Exchange 中查找有关 Genetic Algorithm 的更多信息

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by