how to code newton-raphson method for solving nonlinear equation with two variables
Mostrar comentarios más antiguos

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 comentario
madhan ravi
el 27 de Abr. de 2020
Uploading code is better than a screenshot.
Respuestas (1)
Ameer Hamza
el 27 de Abr. de 2020
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)
Categorías
Más información sobre Newton-Raphson Method en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!