How do I maximise Volume of a cylinder such that its Surface Area is less than 10 using fmincon by predicting only either radius or height but not both?

조회 수: 2 (최근 30일)
Volume= pi*r*r*h
Surface Area= 2*pi*r*(h+r);
i am solving a bigger problem. this simple example will help me to solve the bigger problem. The main point is Fmincon should predict only r or h but not both. The other value has to be computed through the constraint equation. Please give me the full code including function call, objective function and constraint function. Thanks

채택된 답변

Torsten
Torsten 2019년 7월 16일
편집: Torsten 2019년 7월 16일
Not possible. Since r and h are interdependent, "fmincon" must be able to vary both and thus predict them simultaneously.
Of course, if we assume that maximum volume will result if we use maximum surface area, we have
10 = 2*pi*r^2 + 2*pi*r*h
and we can solve for h:
h = 5/(pi*r) - r
and insert in the volume formula
max: pi*r^2*(5/(pi*r) - r)
But for bigger problems with more constraints, this does not seem the way to go.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기

태그

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by