Why is the string below the first conditional not printed?

1 visualización (últimos 30 días)
Andromeda
Andromeda el 13 de Nov. de 2021
Comentada: dpb el 2 de Dic. de 2021
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 comentarios
dpb
dpb el 13 de Nov. de 2021
(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).
Andromeda
Andromeda el 14 de Nov. de 2021
I tried if (AA == BB) == (CC ==1) first and that didn't produce the expected output and thus resorted to what you see above. Why doesn't if (AA == BB) == (CC ==1) work as well?
"if you would use arrays for variables instead of indivdually naming the variables ", care to give me an example?

Iniciar sesión para comentar.

Respuestas (1)

Cris LaPierre
Cris LaPierre el 14 de Nov. de 2021
Editada: Cris LaPierre el 14 de Nov. de 2021
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)
AA = 1.0000
BB = dot(B,B)
BB = 1.0000
CC = dot(C,C)
CC = 1.0000
% now subtract 1. Result is not 0
AA-1
ans = 2.2204e-16
BB-1
ans = 2.2204e-16
CC-1
ans = 2.2204e-16
  2 comentarios
Andromeda
Andromeda el 2 de Dic. de 2021
Well, that is odd. For a vector to form an orthonormal basis[algebra], the dot product of the vector with itself should be equal to 1
dpb
dpb el 2 de Dic. de 2021
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.

Iniciar sesión para comentar.

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by