how to transform coordinate from XYZ to VDH
1 回表示 (過去 30 日間)
古いコメントを表示
採用された回答
KSSV
2018 年 8 月 10 日
A = rand(3,10) ; % xyz coordintes
th = 15 ;
R = [cosd(th) sind(th) 0 ; -sind(th) cosd(th) 0 ; 0 0 1] ;
V = R*A ; % VDH coordiantes
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!