how to transform coordinate from XYZ to VDH

1 回表示 (過去 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