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년 초과 전 | 답변 수: 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년 초과 전 | 답변 수: 1 | 0
