Feeds
提问
Urgent, need help to complete newton raphson method script.
Trying to create a script to find the roots of a function using the newton raphosn method however i am stuck on the script. ...
9 years 前 | 0 个回答 | 0
0
个回答提问
How do i remove the last V= line as it's not required?
function [ xvec ] = iteration(N); x(1)=1 ; for k=1:(N); x(k +1)=(x(k)/2) + 3/x(k); end xvec=x; disp('The...
9 years 前 | 1 个回答 | 0
