Hi...
I am writing a code for Newton-Raphson Method. I wrote three M-Files:
1)Function m-file
function f = f(x)
f = input('Enter Your Function Interms of x ');
2)Derevitive m-file
function df = df(x)
df = input('Enter The Derivitive Of The Above Function Interms of x ');
3)Script...