optimizing 2 parameters with fmincon
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I was optimizing a function named ML with fmincon to find the parameter "theta",
twostage = fmincon(@(theta)ML(theta,param,x,y),theta,[],[],[],[],lb,ub,[],options);
now I want to optimize another function ML2 for two parameters "theta1" and "theta2", can fmincon optimize a function for 2 parameters? how should I write the function?
Thanks
0 comentarios
Respuesta aceptada
Matt J
el 30 de Nov. de 2012
Editada: Matt J
el 30 de Nov. de 2012
Make theta a 2x1 vector instead and rewrite ML accordingly, to interpret theta as a 2x1 input vector. Also make ub and lb 2x1.
2 comentarios
Matt J
el 30 de Nov. de 2012
Yes, although once theta has been passed to ML, there's no reason you couldn't unpack as follows within the ML code:
theta1=theta(1);
theta2=theta(2);
Más respuestas (0)
Ver también
Categorías
Más información sobre Nonlinear Optimization en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!