how to code newton-raphson method for solving nonlinear equation with two variables
이전 댓글 표시

when i run this code it's not working. but i don't know what's wrong.
Not enough input arguments.
Error in jfreact (line 3)
x=x(1); %define values
댓글 수: 1
madhan ravi
2020년 4월 27일
Uploading code is better than a screenshot.
답변 (1개)
Ameer Hamza
2020년 4월 27일
This error will occur if you run jfreact() without any input arguments. You need to run it with input vector x. For example,
x = [1 2];
jfreact(x)
카테고리
도움말 센터 및 File Exchange에서 Newton-Raphson Method에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!