이 질문을 팔로우합니다.
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다.
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다.
solve non-linear optimization problem
조회 수: 2 (최근 30일)
이전 댓글 표시
how to maximize this nonlinear function z and find the value of x and y,
z= 0.031 {0.009[exp(x-z)-1]+x/1.14}-(-1+√(1+y^4/x))/y
10<=x<=20 and y>=0
채택된 답변
Matt J
2021년 4월 26일
With fmincon, if you have Optimization Toolbox.
댓글 수: 19
Hayam Wahdan
2021년 4월 26일
The main problem of this optimization problem, the objective function z is calculated in terms of the same value of z
Hayam Wahdan
2021년 4월 26일
After this assumption, the problem contains three decision variables x,y and z?
Hayam Wahdan
2021년 4월 26일
How fminco function solve this optimization problem
Min -Z
St
Z-....=0
d>=100
d<=300
v>=0
Matt J
2021년 4월 26일
Did you already get it to work on your original problem, and if so how is this new version different?
Hayam Wahdan
2021년 4월 26일
I want to ask, can this function solve this optimization problem subject to non-linear constraints
Matt J
2021년 4월 26일
편집: Matt J
2021년 4월 26일
I want to ask, can this function solve this optimization problem subject to non-linear constraints
Yes, see this example in the documentation:
Note that you don't really have to ensure that the initial guess satisfy the constraints, as they do in the example, but it can be beneficial to do so.
Hayam Wahdan
2021년 4월 27일
Can you help me in writing this MATLAB function Min -Z St z= 0.031 {0.009[exp(x-z)-1]+x/1.14}-(-1+√(1+y^4/x))/y 10<=x<=20 and y>0
Walter Roberson
2021년 4월 28일
편집: Walter Roberson
2021년 4월 28일
fmincon thinks you can get an arbitrarily large result if you make y arbitrarily large.
format long g
obj = @(xyz) -xyz(3);
A = []; b = []; Aeq = []; beq = [];
lb = [10, realmin, -inf];
ub = [20 1e9 1e9];
nl = @(x,y,z) 0.031*(0.009*(exp(x-z)-1)+x./1.14)-(-1+sqrt(1+y^4./x))./y - z
nl = function_handle with value:
@(x,y,z)0.031*(0.009*(exp(x-z)-1)+x./1.14)-(-1+sqrt(1+y^4./x))./y-z
nonlcon = @(xyz) deal(nl(xyz(1), xyz(2), xyz(3)), []);
xyz0 = [.1 .2 .3]
xyz0 = 1×3
0.1 0.2 0.3
[best, fval] = fmincon(obj, xyz0, A, b, Aeq, beq, lb, ub, nonlcon)
Local minimum found that satisfies the constraints.
Optimization completed because the objective function is non-decreasing in
feasible directions, to within the value of the optimality tolerance,
and constraints are satisfied to within the value of the constraint tolerance.
best = 1×3
17.9264664551072 190469849.537475 999999999.999999
fval =
-999999999.999999
Walter Roberson
2021년 4월 28일
Please re-check your equations. I suspect that the sqrt() is intended to extend over the /y as well, which is not what you have coded.
Hayam Wahdan
2021년 4월 28일
Thank you very much for your quick reply,
when i tried this code, gave me error in this line
[best, fval] = fmincon(obj, v0, A, b, Aeq, beq, lb, ub, nonlcon)
Hayam Wahdan
2021년 4월 28일
Error using barrier
Nonlinear constraint function is undefined at initial point. Fmincon cannot continue.
Error in fmincon (line 798)
[X,FVAL,EXITFLAG,OUTPUT,LAMBDA,GRAD,HESSIAN] = barrier(funfcn,X,A,B,Aeq,Beq,l,u,confcn,options.HessFcn, ...
Error in nonlinear (line 11)
[best, fval] = fmincon(obj, vdJ0, A, b, Aeq, beq, lb, ub, nonlcon)
Hayam Wahdan
2021년 4월 28일
편집: Walter Roberson
2021년 4월 28일
format long g
obj = @(xyz) -xyz(3);
A = []; b = []; Aeq = []; beq = [];
lb = [100, realmin, -inf];
ub = [300 1e9 1e9];
%nl = @(x,y,z) 0.031*(0.009*(exp(x-z)-1)+x./1.14)-(-1+sqrt(1+y^4./x))./y - z
w=10^-15*exp(-2.897*10^22*25^-1);
nl = @(x,y,z) 0.055*(w*(exp(5802*(x-19.5*z))-1)+x./1.14)-(-1+sqrt(1+0.5272*y^4./x^2.))/(2.6328 *10^9*y) - z;
nonlcon = @(xyz) deal(nl(xyz(1), xyz(2), xyz(3)), []);
xyz0 = [.1 .2 .3];
[best, fval] = fmincon(obj, xyz0, A, b, Aeq, beq, lb, ub, nonlcon)
Walter Roberson
2021년 4월 28일
w=10^-15*exp(-2.897*10^22*25^-1);
You badly need to rescale !!
exp(-1158800000000000000000) is about
Effectively your w is 0.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!오류 발생
페이지가 변경되었기 때문에 동작을 완료할 수 없습니다. 업데이트된 상태를 보려면 페이지를 다시 불러오십시오.
웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom(English)
아시아 태평양
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)