How to find max and min value of a function ?

조회 수: 117 (최근 30일)
Ani Asoyan
Ani Asoyan 2020년 5월 22일
답변: Walter Roberson 2020년 5월 22일
Hi ... I have a function u_g
a=2; b=2; c=1; e=0.75 ; l=0.5;
u_g = @(x, x_e, N)(-0.5*a*x.^2+b*(x-x_e)-c*(N.^l)+e*u_p(x,x_e,N));
x and N are variables, the rest of them are parameters... I want to find the value of x which will bring u_g the maximum value and corresponding max value of u_g
and I want to find the value of N which will bring minimum value to u_g and corresponding value of u_g ..how can I do it ?.. do I have to fix one of the variables?
  댓글 수: 2
Walter Roberson
Walter Roberson 2020년 5월 22일
u_p is a function?
Ani Asoyan
Ani Asoyan 2020년 5월 22일
yes u_p is a function... sorry I changed what I wanted.
x_e is also a variable
I want to find the values of N and x which will maximize u_g function and the max value of function
and also I want to find the value of N which will maximize u_g function given the value of x (for example x=0) ..
can I do that? .. Do I have to give x_e a value ?

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

답변 (3개)

Abdolkarim Mohammadi
Abdolkarim Mohammadi 2020년 5월 22일
편집: Abdolkarim Mohammadi 2020년 5월 22일
Finding the value of inputs that minimzes or maximizes the objective function value is an optimization problem. If your function is linear, then you run the following code and optimize your function:
[x, fval] = linprog (u_g, [], []);
If your function is unimodal and relatively smooth, then you run the following code and optimize your function:
[x, fval] = fmincon (u_g, x0, [], []);
And if the landscape of your function is unknown, i.e., you don't know whether it is linear, nonlinear, multi-modal, non-smooth, etc, then you run the following code and optimize your function:
nvars = 3;
[x, fval] = ga (u_g, nvars);
You can refer to the documentation of each solver for more information.
  댓글 수: 2
John D'Errico
John D'Errico 2020년 5월 22일
You seem to be advocating linprog for all problems. (At least those I've seen you answer.) Note that this is NOT a linear objective, so linprog is completely useless here.
Abdolkarim Mohammadi
Abdolkarim Mohammadi 2020년 5월 22일
I just wanted to give a general idea of the optimization tools besides the nonlinear ones that are suitale for those problems.

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


Walter Roberson
Walter Roberson 2020년 5월 22일
a=2; b=2; c=1; e=0.75 ; l=0.5;
u_g = @(x, x_e, N)(-0.5*a*x.^2+b*(x-x_e)-c*(N.^l)+e*u_p(x,x_e,N));
funmin = @(xxeN) u_g(xxeN(1), xxeN(2), xxeN(3));
funmax = @(xxeN) -u_g(xxeN(1), xxeN(2), xxeN(3));
lb = [-10 -10 -10]; %adjust as appropriate
ub = [10 10 10]; %adjust as appropriate
xxeN0 = [-.1 .2 .3]; %initial guess
[best4min, fvalmin] = fmincon(funmin, xxeN0, [], [], [], [], lb, ub);
[best4max, fvalmax] = fmincon(funmax, xxeN0, [], [], [], [], lb, ub);

Cristian Garcia Milan
Cristian Garcia Milan 2020년 5월 22일
I think that what you want is the function
fminbnd(fun)
that finds local minimum.
If you use
fminbnd(-fun)
you will get it max.
  댓글 수: 3
Cristian Garcia Milan
Cristian Garcia Milan 2020년 5월 22일
How about using symbolic toolbox? Then you can derivate alomg x or N and solve making equal 0
Ani Asoyan
Ani Asoyan 2020년 5월 22일
you mean syms x? ,, how can I do that properly?

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

카테고리

Help CenterFile Exchange에서 Solver Outputs and Iterative Display에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by