How can i solve the error "Reference to non-existent field 'xShape'. Error in finDiffEvalAndChkErr Error in finitedifferences'"

조회 수: 2 (최근 30일)
c = -1; % define parameter first
x = fsolve(@(x) myfun(x,c),[-5;-5])
function F = myfun(x,c)
F = [ 2*x(1) - x(2) - exp(c*x(1))
-x(1) + 2*x(2) - exp(c*x(2))];
Reference to non-existent field 'xShape'.
Error in finDiffEvalAndChkErr
Error in finitedifferences
Error in trustnleqn (line 107)
[JACfindiff,~,~,numFDfevals,evalOK] = finitedifferences(x,funfcn{3},[],[],[],Fvec,[],[],
...
Error in fsolve (line 367)
trustnleqn(funfcn,x,verbosity,gradflag,options,defaultopt,f,JAC,...

답변 (1개)

Alex Sha
Alex Sha 2020년 2월 13일
Hi, as my test, if c>0.367879, there is no solution for your equations.

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by