Verfasst am: 14.07.2016, 10:11
Titel: Hinzufuegen von Optionen beim Solver ga (genetic algorithm)
Hallo!
Ich möchte den Solver ga verwenden, um ein globales Minimum für 3 Parameter zu finden. Wenn ich jedoch Optionen hinzufüge beim Aufrufen des Solvers hinzufüge, kriege ich folgende Fehlermeldung:
Error using optimoptions (line 114)
Invalid solver specified. Provide a solver name or handle (such as 'fmincon' or
@fminunc).
Type DOC OPTIMOPTIONS for a list of solvers.
Error in mainscript (line 95)
options = optimoptions('ga','Display','final')
Ohne Optionen klappt es gut. Kann jemand helfen?
Code:
% number of variables
nvars=3;
% no linear inequalities exist (A*x <= b)
A = [];
b = [];
% no linear inequalities exist (Aeq*x = beq as well as A*x <= b)
Aeq = [];
beq = [];
% Bounds
LB = [000];
UB = [+inf +inf +inf];
% No nonlinear constraints
nonlcon = [];
% Options
options = optimoptions('ga','UseParallel', true);
[x,fval] = ga(@objective,nvars,A,b,Aeq,beq,LB,UB,nonlcon,options)
Danke, Harald! Ich verwende nicht Matlab 2016, daran wird es liegen.
Ich werde mich mehr auf die integrierte Hilfe stützen, als auf die Website!
Einstellungen und Berechtigungen
Du kannst Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen. Du kannst Dateien in diesem Forum posten Du kannst Dateien in diesem Forum herunterladen
MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.