Problem of critical point solution.

1 次查看(过去 30 天)
I have a problem with function below. The answer below means that there is only one critical point, but the graph tells me there are 5 points.
syms x y
f=(2*x^2+8*y^2-4*x)/exp(x^2+y^2-2*x-1);
gradf = jacobian(f,[x,y]);
hessmatf = jacobian(gradf,[x,y]);
[xcr,ycr]=solve(gradf(1),gradf(2));
Cannot solve symbolically. Returning a numeric approximation instead.
> In solve at 306
In criticalpoint at 5
ans =
[ -0.4142135623730950488016887242097, 0]
  3 个评论
Walter Roberson
Walter Roberson 2015-11-8
You would get that result if you were to paste the lines of code in to the console.
Walter Roberson
Walter Roberson 2015-11-8
It does appear to have given up on the solve() too easily. Which version are you using?

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Number Theory 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by