Problem of critical point solution.

조회 수: 1 (최근 30일)
George Co
George Co 2015년 11월 7일
댓글: Walter Roberson 2015년 11월 8일
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