dot product function in Matlab
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
AD
el 27 de Dic. de 2016
Movida: John D'Errico
el 25 de Nov. de 2023
Hello, I just tried to do in Matlab :
I=eye(3)
dot(I,I)
--> the result is [1 1 1]
To my understanding it clearly should be [0 0 0] !!! Why does it produce 1 1 1 ?
Best regards,
(P.S. It works correctly with other e.g. random matrices)
0 comentarios
Respuesta aceptada
Walter Roberson
el 27 de Dic. de 2016
dot(A,B), for N-D arrays A and B, returns the scalar product
along the first non-singleton dimension of A and B. A and B must
have the same size.
>> dot(I(:,1),I(:,1))
ans =
1
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!