Feeds
질문
How do I stop the infinite loop in this fixed point iteration code?
Here is my code: %fixedpoint g=@(x) 1-(1/7).*exp(1).^x; n=1; x(1)=0.5; x(2)=g(x(1)); tol = (0.5*10e-10);...
10년 초과 전 | 답변 수: 1 | 0
1
답변질문
How to plot convergence graph using bisection method code
I am having trouble getting the convergence graph to plot using this code for bisection method. function xc=bijection(f,a,b...
10년 초과 전 | 답변 수: 1 | 0