Feeds
답변 있음
correction for loop in bisection method
f = @(x)(2*x^2-5*x+3) xl=0; xu=10; error=0.001; while(f(xl)*f(xu)>0) xl=input('New input for lower '); xu=input('N...
correction for loop in bisection method
f = @(x)(2*x^2-5*x+3) xl=0; xu=10; error=0.001; while(f(xl)*f(xu)>0) xl=input('New input for lower '); xu=input('N...
대략 4년 전 | 0
