Azzera filtri
Azzera filtri

Error in converting Decimals from Degree Minutes Seconds

1 visualizzazione (ultimi 30 giorni)
Hello, I am facing problem in converting dms to dd, i have a matrix of 4x3 as shown below
i am using following command to convert in degree decimals,
angleInDegrees = dms2degrees(dms)
but i always got following error:
Need assistance ?

Risposta accettata

Walter Roberson
Walter Roberson il 2 Apr 2016
dms2degrees([dms(:,1), floor(dms(:,2)), mod(dms(:,2),1)*60])

Più risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 2 Apr 2016
v=[33 31.15 0] % 31.15 is not allowed by Matlab, it should be an integer
out=dms2degrees(fix([33 33.15 0]))

Categorie

Scopri di più su Marine and Underwater Vehicles in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by