Can Matlab be used to perform the optimization of a second order model to determine the optimum points?

1 次查看(过去 30 天)
I have a second order model with 4 variables and I plotted the surface plot of the response against 2 of the variables while keeping the other 2 fixed at their mid level. Is there a code to locate the stationary or turning point of the plot
  2 个评论
Chimezie Umezie
Chimezie Umezie 2012-11-7
Thank you for your comment.I mean to say the value(or coordinates) of the factors x1,x2,x3 and x4 that give the maximum(or minimum response). I used LinearModel.fit to fit the data to a full quadratic model.If you don't mind sending your email address I can send the M-file. I am a student of University of Aberdeen and I am writing my dissertation. I need help on this.
Thank you

请先登录,再进行评论。

采纳的回答

Alan Weiss
Alan Weiss 2012-11-7
You can find a minimum of a function using fminsearch. If you have optimization Toolbox, use fminunc.
You can find a maximum by negating the function and then searching for a minimum (see Maximizing Functions).
To find a saddle point, you will need to do more work, and will need Optimization Toolbox. Find the gradient of the function (if you have Symbolic Math Toolbox, you can do this easily, as shown in this example). Then find the root of the gradient using fsolve.
Good luck,
Alan Weiss
MATLAB mathematical toolbox documentation

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Nonlinear Optimization 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by