Can fmincon (optimization tool) be used over one variable.?

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.

 채택된 답변

Alan Weiss
Alan Weiss 2013년 2월 4일

0 개 추천

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

Thank you Alan.Yes if i have any doubt regarding constrained optimization will ask you with more details.
Alan Weiss, it will help me a lot if you can give a example for single variable constrained optimization using fmincon.
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
Thank you Alan.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Get Started with Optimization Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by