How to Vectorize this Code?
Mostrar comentarios más antiguos
I have this 147000 x 3 array, where each index represents a 3D vector. I want to use the vector at each index to find the angle between it and a predefined vector "b0" [ 0 1 0], this results in a 147000 x 1 array where each index has a single angle. I have been able to do this by using a normal for loop, however I was wondering if there was a way to vectorize this so it will be faster. I have been trying, but it either says that it can't do the dot product because arrays are of incompatible size, or it will only calculate the angle of the first index, then copy that 147000 times into the Nx1 array.
Thanks for any help. 

4 comentarios
James Tursa
el 21 de Sept. de 2022
You can use a matrix multiply with b0 as a column vector to get the dot products. E.g.,
d = n3Array * b0(:); % the (:) syntax results in a column vector
Krishan Bansal
el 21 de Sept. de 2022
Matt J
el 21 de Sept. de 2022
@Krishan Bansal Please post your code and output as text, not images, to facilitate copy/pasting.
Krishan Bansal
el 21 de Sept. de 2022
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Performance and Memory en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

