how to transform coordinate from XYZ to VDH

2 次查看(过去 30 天)
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 个)

类别

Help CenterFile Exchange 中查找有关 Cartesian Coordinate System Conversion 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by