How to adjust the FminSearch step?
3 ビュー (過去 30 日間)
古いコメントを表示
I'm using fminsearch to find the minimum of a 2 variable problem ... I would like the search to be at least in the range of 0.3 to 2 .. however, the algorithm performs search only on values close to the initial .. (0.3 , 0.31 ...) How can I improve this condition?
0 件のコメント
回答 (1 件)
Sulaymon Eshkabilov
2019 年 5 月 16 日
Hi,
Set tolerances in optimset and include in in your fminsearch(..., ..., OPTsN) :
OPTs = optimset('TolFun', 1e-15);
OPTsN = optimset(OPTs, 'TolX', 1e-9);
fminsearch(..., ..., OPTsN);
Good luck.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!