how to transform coordinate from XYZ to VDH
    조회 수: 2 (최근 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!

