How can one write a program to do this? (fminbnd)

I define a function
function out = test(x)
y=x^2;
z=y+1;
out=z
end
Then I run
fminbnd(@(x) test(x),0,1)
This will return the value of x that maxes test(x). But I also want to output y at that optimal. How can one do this?

 Respuesta aceptada

Alan Weiss
Alan Weiss el 5 de Ag. de 2020
Editada: Alan Weiss el 5 de Ag. de 2020
You can get the value of out = z simply by asking for it:
[xbest,out] = fminbnd(@(x) test(x),0,1)
Alan Weiss
MATLAB mathematical toolbox documentation

4 comentarios

alpedhuez
alpedhuez el 5 de Ag. de 2020
Not z but y.
Alan Weiss
Alan Weiss el 5 de Ag. de 2020
I am not sure what you want. You can calculate y separately in a function. Your function does not output y.
Alan Weiss
MATLAB mathematical toolbox documentation
Steven Lord
Steven Lord el 5 de Ag. de 2020
Define your test function to return two outputs, out and y. fminbnd will only ever call your function with one output. After fminbnd returns the "best x" call test with that best x as the input and two outputs.
alpedhuez
alpedhuez el 5 de Ag. de 2020
using breakpoints now.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Simulink en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 5 de Ag. de 2020

Comentada:

el 5 de Ag. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by