Using fminbnd to find the max value.

49 visualizaciones (últimos 30 días)
Jose Grimaldo
Jose Grimaldo el 15 de Abr. de 2020
Editada: Walter Roberson el 15 de Abr. de 2020
How can I find the max value between 0.5 - 5 using fminbnd?
m=.09
b=2.7
Eq1=@(x) b.*(x.^m)
% I try this but I get an error
Maxp=fminbnd(Eq1.*-1,0.5,5)

Respuesta aceptada

Walter Roberson
Walter Roberson el 15 de Abr. de 2020
Editada: Walter Roberson el 15 de Abr. de 2020
[Bestx, Maxp] = fminbnd(@(x) -Eq1(x), 0.5, 5)

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by