Why is the string below the first conditional not printed?
1 次查看(过去 30 天)
显示 更早的评论
I need help understanding why the string below the first conditional is not printed when AA, BB, CC are clearly equal. See attachment below
2 个评论
dpb
2021-11-13
(AA==BB) == 1 && (CC) == 1
is not good syntax.
if AA==1 & BB==1 & CC==1
will work; more succinct forms can be written if you would use arrays for variables instead of indivdually naming the variables (generally a bad practice to use MATLAB efficiently to have mulitple similarly-named/functionally equivalent variables as above).
回答(1 个)
Cris LaPierre
2021-11-14
编辑:Cris LaPierre
2021-11-14
Because the result of the dot products is not exactly 1.
A = [2 2 -1+4i]/5;
B = circshift(A,-1);
C = circshift(B,-1);
AA = dot(A,A)
BB = dot(B,B)
CC = dot(C,C)
% now subtract 1. Result is not 0
AA-1
BB-1
CC-1
2 个评论
dpb
2021-12-2
Floating point arithmetic is only an approximation to algebra...see <Goldberg - What Every Computer Scientist Should Know> for detailed explanation. There are some other discussions and examples in the documentation as well.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!