photo

Malcolm Kevin


Last seen: 3년 초과 전 2021년부터 활동

Followers: 0   Following: 0

통계학

Feeds

보기 기준

질문


Newton Method Matlab code
function approximation = newtonsMethod( fnc, x0, delta ) maxnumIter = 100; n = 0; % Initialize iteration counter. syms fp;...

3년 초과 전 | 답변 수: 1 | 0

1

답변

질문


How to write Newton method with exact number of iterations and see all digit ? for example if method is required to take exact 5 iterations of newton's method
Here is my code so far, I haven't set up the N yet function c = newton(x0, delta) format long e x0 = 5; delta = 10^-8; c =...

3년 초과 전 | 답변 수: 1 | 0

1

답변