How to Vectorize this Code?
조회 수: 1 (최근 30일)
이전 댓글 표시
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. ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1132235/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1132235/image.png)
댓글 수: 4
Matt J
2022년 9월 21일
@Krishan Bansal Please post your code and output as text, not images, to facilitate copy/pasting.
채택된 답변
Matt J
2022년 9월 21일
편집: Matt J
2022년 9월 21일
n3Array=normalize(n3Array,2,'n');
b0=b0/norm(b0);
b0angles=acosd(n3Array*b0);
댓글 수: 11
James Tursa
2022년 9월 21일
This creates complex doubles?
n3Array = squeeze(Orientation4D(:, 1, 1,1:3));
b0 = [0 1 0];
n3Array = normalize(n3Array,2,'n');
b0 = b0/norm(b0);
b0angles = acosd(n3Array*b0(:));
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!