Clear Filters
Clear Filters

Matlab continues to run and wont stop. Is my solution to complicated?

1 view (last 30 days)
Here is my code
syms x y
a= 13;
b= 5;
c=2;
d=5;
p = 4*(a+b+c+d);
f(x,y)= (p./((3*x+a).^2+(3*y+c).^2+(a+c)))...
-(2*p./((3*x-b).^2+(3*y+d).^2+(b+d)))...
-(3*p./((3*x+a).^2+(3*y-d).^2+(a+d)))...
+(4*p./((3*x-b).^2+(3*y-c).^2+(b+c)));
ezsurf(f,[-10,10])
title('My land');
xlabel('X- Axis');
ylabel('Y-Axis');
colormap(jet)
hold off
fx= diff(f,x);
fy=diff(f,y);
[a,b]= solve(fx,fy);
double([a,b])

Answers (2)

Aquatris
Aquatris on 4 Aug 2018
Edited: Aquatris on 4 Aug 2018
Try doing this in your code;
fx = simplify(expand(diff(f,x)));
fy = simplify(expand(diff(f,x)));
I think in your code, the expression for fx is too complicated without the simplify(expand()) command. When I replaced that part, it was able to solve in a second or so.
  3 Comments
Meslech Bellay
Meslech Bellay on 4 Aug 2018
hey aquartis, did this actually work for you? because my matlab is still timing out when trying.
Aquatris
Aquatris on 4 Aug 2018
It worked. I used Matlab online. However as Walter commented, this might not be what you want.

Sign in to comment.


Walter Roberson
Walter Roberson on 4 Aug 2018
If you try stepwise elimination of either fx or fy with respect to either x or y, you will get a solution involving the roots of a polynomial of order 12. With each of them being order 12, MATLAB has to work through 144 different roots -- but it cannot express them in full because there is not typically any closed form expression for any order above order 4. So this is not an easy equation to solve.
Unfortunately proceeding numerically does not work well in this case: the loss of precision that goes along with working with floating point numbers can result in somewhat negative values being calculated from fx^2+fy^2 even though algebraically that should not be possible.
You appear to be trying to calculate all of the extrema and inflections of f(x,y), including the complex ones.
If you are just looking for the global minima, then it is at about -4.34915949152492498, 1.72539721154691694

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!