how to get a transformation matrix
이전 댓글 표시
Hi,all, i have two group of vectors(group A and group B), each group contains 30,000 vectors,the dimension of each vector is 20. I want to train a transformation matrix which is transform group A to group B, is there any function can do this in MatLab, any suggestion would be helpful,thank you!
답변 (1개)
Kautuk Raj
2023년 6월 2일
To train a transformation matrix that maps vectors from group A to group B in MATLAB, the Procrustes analysis function procrustes can be used. The documentation page explains this with an example.
The following code reproduces your use case and applies the process.
A = rand(30000, 20);
B = rand(30000, 20);
[~, T] = procrustes(A, B);
A_transformed = A * T.T;
This will transform each vector in group A so that it aligns with the corresponding vector in group B.
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!