Borrar filtros
Borrar filtros

fminbnd for multiple parameter function

2 visualizaciones (últimos 30 días)
Peter
Peter el 6 de Jun. de 2011
I have a function f(x,y,z). I want to use fminbnd to minimize f(x) given a y and z. I am wondering if there is a neat way of passing this to fminbnd or if I need to write a separate function such as:
g(x) {
g = f(x,1,1);
}

Respuestas (1)

Gabo
Gabo el 7 de Jun. de 2011
I'm a little confused by "write a separate function such as g(x) { g=f(x,1,1);}". But I think a function handle is what you are looking for. Try:
g=@(x)f(x,1,1);
fminbnd(g,x1,x2)
See also the examples in fminbnd.

Categorías

Más información sobre External Language Interfaces en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by