필터 지우기
필터 지우기

Large amount of coordinates transformation in 3D

조회 수: 1 (최근 30일)
M Teaxdriv
M Teaxdriv 2022년 7월 13일
답변: Walter Roberson 2022년 7월 13일
Hello,
I am trying to perform transformation of large amount of coordinates, but firstly I am doing it on this small example:
I would like to rotate by 10 degrees about y axis x y z coordinates ( size is 8 x 3). How to perform such rotation? I have found rotation matrices but they are 3x3 and if I want to mupliply matrices [3x3] * [8x3] it is not possible.
Therefore I would like to ask you for help.
theta = 10;
A = [0 0 0; 1 1 1; 0 0 1; 1 1 0; 1 0 1; 0 1 0; 0 1 1; 1 0 0];
x = A(:,1); y = A(:,2); z = A(:,3);
RY = [
cosd(theta) 0 sind(theta)
0 1 0;
-sind(theta) 0 cosd(theta)];
ARY = RY*A;
Best regards
Michal

채택된 답변

Chunru
Chunru 2022년 7월 13일
Transpose A:
theta = 10;
A = [0 0 0; 1 1 1; 0 0 1; 1 1 0; 1 0 1; 0 1 0; 0 1 1; 1 0 0]';
x = A(:,1); y = A(:,2); z = A(:,3);
RY = [
cosd(theta) 0 sind(theta)
0 1 0;
-sind(theta) 0 cosd(theta)];
ARY = RY*A
ARY = 3×8
0 1.1585 0.1736 0.9848 1.1585 0 0.1736 0.9848 0 1.0000 0 1.0000 0 1.0000 1.0000 0 0 0.8112 0.9848 -0.1736 0.8112 0 0.9848 -0.1736
A
A = 3×8
0 1 0 1 1 0 0 1 0 1 0 1 0 1 1 0 0 1 1 0 1 0 1 0

추가 답변 (1개)

Walter Roberson
Walter Roberson 2022년 7월 13일
theta = 10;
M = makehgtform('yrotate', deg2rad(theta))
M = 4×4
0.9848 0 0.1736 0 0 1.0000 0 0 -0.1736 0 0.9848 0 0 0 0 1.0000
A = [0 0 0; 1 1 1; 0 0 1; 1 1 0; 1 0 1; 0 1 0; 0 1 1; 1 0 0];
x = A(:,1); y = A(:,2); z = A(:,3);
c = zeros(size(x));
xyzc = [x, y, z, c];
newxyz = xyzc * M
ans = 8×4
0 0 0 0 0.8112 1.0000 1.1585 0 -0.1736 0 0.9848 0 0.9848 1.0000 0.1736 0 0.8112 0 1.1585 0 0 1.0000 0 0 -0.1736 1.0000 0.9848 0 0.9848 0 0.1736 0
newx = newxyz(:,1); newy = newxyz(:,2); newz = newxyz(:,3);

카테고리

Help CenterFile Exchange에서 Smoothing and Denoising에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by