So, I've been doing a project lately and I come upon this interesting bug.
here's a variable W which uses the euler's formula i.e., cos(2*pi*1i/8) +
W = cos(2*pi/8) + sin(2*pi/8);
or even the exponent form
W = exp(2*pi*1i/8);
Now, if i use a power k = 2 on this variable, I get the result as intended
>> k = 2
k =
2
>> W^k
ans =
0.0000 + 1.0000i
Here's the one in a loop in the command window which is fine again
for k = 1:4
disp(W^(k-1));
end
1
0.7071 + 0.7071i
0.0000 + 1.0000i
-0.7071 + 0.7071i
but, when i put this in a loop inside my program this is the result
for k = 1:4
g(k) = W^(k-1);
disp("W^(k-1) " + W^(k-1));
end
W^(k-1) 1
W^(k-1) 0.70711+0.70711i
W^(k-1) 2.2204e-16+1i
W^(k-1) -0.70711+0.70711i
how did this bug occur such that it's working perfectly fine in commands but not in program ?

 채택된 답변

Rik
Rik 2020년 9월 26일

1 개 추천

This is not a bug. Look at the exponent: 2e-16 is very small. It is close enough to eps that you can assume that is just 0.
The reason in the way computers store values. Just like you can't store the result of 1/3, computers can't store every number. If you can only store 4 decimals 3*(1/3) will be 0.9999, not 1.

댓글 수: 2

I see.
But somehow I'm in the impression that this negligible number is completely ruining my final result. Is there any way to rectify this so the results of its iterations won't get affected also ?
Rik
Rik 2020년 9월 26일
You probably don't have to do anything, but you could round to some maximum precision.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Programming에 대해 자세히 알아보기

제품

릴리스

R2020b

댓글:

Rik
2020년 9월 26일

Community Treasure Hunt

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

Start Hunting!

Translated by