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

版本 1.1.0.0 (2.8 KB) 作者: Kenneth Johnson
Works around a bug (or design defect) in fminsearch.
148.0 次下载
更新时间 2016/5/23

查看许可证

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.

引用格式

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

MATLAB 版本兼容性
创建方式 R2016a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Nonlinear Optimization 的更多信息
标签 添加标签

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.1.0.0

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

1.0.0.0