how to transform coordinate from XYZ to VDH

조회 수: 2 (최근 30일)
Megha
Megha 2018년 8월 10일
댓글: Megha 2018년 8월 10일
Are there any matlab function/codes, that helps in conversion of XYZ coordinates to Vertical Dusk Horizontal (VDH) coordinates??

채택된 답변

KSSV
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
  댓글 수: 1
Megha
Megha 2018년 8월 10일
Yes, thank you @KSSV,
that is what exactly I was looking for.
BTW I was referring to the same link and got confused.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by