Can fmincon (optimization tool) be used over one variable.?
5 ビュー (過去 30 日間)
古いコメントを表示
I am taking uniform thickness of a singly curved cylindrical Shell as a design variable for optimization with Static(Vertical deflection) and dynamic(frequency) as Constraints.
0 件のコメント
採用された回答
Alan Weiss
2013 年 2 月 4 日
Yes.
However, I am not sure that this is the answer you wanted. Feel free to ask again with more detail. Meanwhile, you might be able to answer some of your own questions by looking at examples in the documentation.
Alan Weiss
MATLAB mathematical toolbox documentation
4 件のコメント
Alan Weiss
2013 年 2 月 11 日
Usually a single-variable problem falls in the domain of fminbnd. But if you really want to use fmincon:
lb = 5;
ub = 15;
x0 = 10;
[x,fval] = fmincon(@sin,x0,[],[],[],[],lb,ub)
Alan Weiss
MATLAB mathematical toolbox documentation
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Linear Programming and Mixed-Integer Linear Programming についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!