Objective function for fmincon from surrogate model

2 visualizaciones (últimos 30 días)
Douglas Eddy
Douglas Eddy el 26 de En. de 2023
Comentada: Douglas Eddy el 27 de En. de 2023
Trying to automatically generate the fun objective function for fmincon from a second order quadratic model generated by fitlm. There is no easy way from the outputs of a fitlm model. It should be easy because there is quadratic function created at mdl.Formula.LinearPredictor. ModelCenter is able to able to optimize any function generated as a surrogate model by RSM, which is what fitlm does. Does anybody have some function code that can generate the fun function automatically for fmincon from a quadratic model?

Respuesta aceptada

Matt J
Matt J el 26 de En. de 2023
Editada: Matt J el 26 de En. de 2023
Can't you just do,
fun=@(X) norm(mdl.predict(X)-y).^2
  1 comentario
Douglas Eddy
Douglas Eddy el 27 de En. de 2023
Yes! This is exactly what I was looking for. I just was not able to find it in the search. Thanks!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Solver Outputs and Iterative Display en Help Center y File Exchange.

Productos


Versión

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by