how to transform coordinate from XYZ to VDH
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Are there any matlab function/codes, that helps in conversion of XYZ coordinates to Vertical Dusk Horizontal (VDH) coordinates??
0 Commenti
Risposta accettata
KSSV
il 10 Ago 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
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!