bug in power calcultion while in loop ?
Show older comments
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 ?
Accepted Answer
More Answers (1)
Categories
Find more on Programming in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!