fminsearch_(funfcn,​x0,options,varargin​)

Works around a bug (or design defect) in fminsearch.
148 descargas
Actualizado 23 may 2016

Ver licencia

The standard fminsearch function uses an unreliable and faulty method for setting the initial x step, e.g. as illustrated by the case fminsearch(@(x) (x-1)^2,1e-3). (The return value is close to zero.) fminsearch_ provides user control of the x step, and uses a more reliable default, e.g. fminsearch_(@(x) (x-1)^2,1e-3) returns 1.

Citar como

Kenneth Johnson (2024). fminsearch_(funfcn,x0,options,varargin) (https://www.mathworks.com/matlabcentral/fileexchange/57284-fminsearch_-funfcn-x0-options-varargin), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2016a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Nonlinear Optimization en Help Center y MATLAB Answers.
Etiquetas Añadir etiquetas

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
1.1.0.0

Version 1.1: Added varargin{:} to fminsearch arguments.

1.0.0.0