Finding minimum values for two-unknown equation!!!

4 次查看(过去 30 天)
Hello,
'a' 'b' 'c' 'd' are known in the equation. We are trying to find values for 'x' and 'y' that minimizes 'F'
Is it possible to insert this function directly in to Matlab? If yes, how can we minimize?
Thanks

采纳的回答

Star Strider
Star Strider 2014-5-21
This works:
a = 3;
b = 5;
c = 7;
d = 13;
% % x = xy(1), y = xy(2)
F = @(xy) hypot(xy(1)-a, xy(2)-b) + hypot(xy(1)-c, xy(2)-d)
[xy, fval] = fminsearch(F,[1 1])
  4 个评论
Serhat
Serhat 2014-5-23
Thank you so much. I have one more question.I want to generalize the code.
What I am trying to do is to insert these equations into summation like this:
I know BS and r matrices. x and y still unknown.
I have this error message in Matlab. How can I fix it?
Star Strider
Star Strider 2014-5-23
编辑:Star Strider 2014-5-23
You have two errors that I see that will cause your loop to fail:
  1. Don’t define F as F(ti,:). Just define it as F and then call it as F in fminsearch. Also, F(ti,:) or F should not be on the right side of the equation. You are correct in putting it in the loop, since apparently you are defining different constants ( r, BS ) in it. Test F outside the loop on one set of parameters before you put it in the loop, then with fminsearch. That way, you know it works, what it returns, and that it works with fminsearch.
  2. In your fminsearch output in the loop, xy has 2 elements ( x and y ), so return it as either [xy(ti,:),fval] or [xy(:,ti),fval] depending on whether it returns xy at each iteration as a row or column vector. Also, I suggest you store fval as well, so you know the function minimum at each iteration. This may be of interest to you later.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Solver Outputs and Iterative Display 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by