Effacer les filtres
Effacer les filtres

how to transform coordinate from XYZ to VDH

2 vues (au cours des 30 derniers jours)
Megha
Megha le 10 Août 2018
Commenté : Megha le 10 Août 2018
Are there any matlab function/codes, that helps in conversion of XYZ coordinates to Vertical Dusk Horizontal (VDH) coordinates??

Réponse acceptée

KSSV
KSSV le 10 Août 2018
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 commentaire
Megha
Megha le 10 Août 2018
Yes, thank you @KSSV,
that is what exactly I was looking for.
BTW I was referring to the same link and got confused.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Cartesian Coordinate System Conversion dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by