Feeds
已回答
I need to create an anonymous function for the newton raphson method that finds the exact roots of (-1+5.5x-4x^2+0.5x^3) I do not even know where to begin.
clear all clc syms x; fun=input('Enter the funtion as a variable of X'); f=inline(fun); z=diff(f(x)); f1=inline(z); x...
I need to create an anonymous function for the newton raphson method that finds the exact roots of (-1+5.5x-4x^2+0.5x^3) I do not even know where to begin.
clear all clc syms x; fun=input('Enter the funtion as a variable of X'); f=inline(fun); z=diff(f(x)); f1=inline(z); x...
6 years 前 | 0

