can anyone help explain to me ?

조회 수: 1 (최근 30일)
diadalina
diadalina 2019년 11월 17일
답변: Walter Roberson 2019년 11월 17일
I want to calculate the sum value of sn, with different manner, using matlab ,
its exact value is equal ,
the first way is:
the second way is :
if we talk about how the machine calculates, it is clear that we are not going to find the same result in relation to the exact value, but matlab gives me the same result, can anyone help me to find the error, this is my code matlab
%n=9,
%n=99,
n=999;
i=1:n;
format long
s1=1+sum(1./(i.^2+i));
s2=sum(1./(i.^2+i))+1;
s3=2+(1/(n+1));
s3 =
2.001000000000000
s1 =
1.498999999999999
s2 =
1.498999999999999

채택된 답변

Walter Roberson
Walter Roberson 2019년 11월 17일
s2=sum(fliplr(1./(i.^2+i)))+1;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by