I have a problem with (IterMeth )

조회 수: 22 (최근 30일)
Saad Almalki
Saad Almalki 2020년 12월 7일
답변: ahmed mahmood 2021년 10월 9일
function [ val, ea, iter] = IterMeth(x , es, maxit)
%initialization
iter=1;
val = 1;
sol = val;
ea =100;
%iterative calculation
while (1)
solold=sol;
sol = s0l+x^iter/factorial(iter);
iter= iter+ 1;
if sol~=0
ea=abs((sol-solold)/sol)*100;
end
if ea<=es || iter >= maxit,break,end
end
val=sol;
end

답변 (2개)

ahmed mahmood
ahmed mahmood 2021년 10월 9일
Terms Result εt , % εa, % 1 1 39.3 2
1.5 9.02 33.3 3
1.625 1.44 7.69 4
1.645833333 0.175 1.27 5
1.648437500 0.0172 0.158 6
1.648697917 0.00142 0.0158

ahmed mahmood
ahmed mahmood 2021년 10월 9일
Terms Result εt , % εa, % 1 1 39.3 2
1.5 9.02 33.3 3
1.625 1.44 7.69 4
1.645833333 0.175 1.27 5
1.648437500 0.0172 0.158 6
1.648697917 0.00142 0.0158

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by