Rotate Basis Vectors Programmatically
이전 댓글 표시
I have six 6-dimensional basis vectors, i.e., that are orthogonal. I wonder how I can rotate these 6 vectors programatically in the 6D space to build new basis vectors. In other words, is there a way to parameterize these basis vectors so that I can change them without losing orthogonality?
A = [a1,a2,...,a6];
B = [b1,b2,...,b6];
C = [c1,c2,...,c6];
D = [d1,d2,...,d6];
E = [e1,e2,...,e6];
F = [f1,f2,...,f6];
Thank you.
채택된 답변
추가 답변 (2개)
V1 = orth(randn(6)) % your original orthonormal basis
% Then you can apply any other orthonormal basis to it
% For example,
V2 = orth(randn(6)); % get another orthonormal basis
Vnew = V2*V1; % this is the transform of the original orthonormal basis
Vnew*Vnew' % to demonstrate the oorthonormal property
% If you want to control the rotation with angle in N-D space
% Rotate on hyperplane i-j by theta
i=2; j=4; % for example
theta = 5; % deg
R = eye(6); % 6D
R([i j], [i j]) = [cosd(theta) -sind(theta); sind(theta) cosd(theta)]
% Then you can have a series of rotation matrices and you can put them
% together as one rotation matrices
댓글 수: 5
Mohammad MSBR
2022년 9월 30일
Chunru
2022년 9월 30일
See the update answer.
Mohammad MSBR
2022년 10월 1일
Chunru
2022년 10월 2일
Rotation on any hyper plane will not change orthogonity.
Mohammad MSBR
2022년 10월 2일
Mohammad MSBR
2022년 9월 30일
0 개 추천
댓글 수: 4
Jan
2022년 9월 30일
I do not understand this question. If you specify a hyperplane to rotate in and the rotational angle, the rotation matrix is unique. There is no order of rotations.
There is an infinite number of rotations in 6D, not just 6. Even rotations around the unit vectors are not meaningful for more than 3 dimensions, because there is not unique rotational axes. Therefore planes are required and the 6 unit vectors build 30 planes.
Mohammad MSBR
2022년 10월 1일
Sorry, there are only 15 hyperplanes in 6D: 6 choices for the first vector, 5 possible choices for the 2nd one, but the order does not matter, so divide by 2.
nchoosek(1:6, 2)
Mohammad MSBR
2022년 10월 2일
카테고리
도움말 센터 및 File Exchange에서 Multiobjective Optimization에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!