Azzera filtri
Azzera filtri

.TXT data into matrix Matlab

1 visualizzazione (ultimi 30 giorni)
Michal Cerny
Michal Cerny il 2 Nov 2022
Risposto: Voss il 2 Nov 2022
Hello everyone, I am having issues with the import of data. The data is in Text file with semicolon as the delimiter. The data is format of time;GPS coordinates;subject. I am having issues with import probably because of the "plane" text. I intend to import this data and then plot the GPS coordinates. How can I please solve my problem? Thank you

Risposte (1)

Voss
Voss il 2 Nov 2022
You might try using readtable.
t = readtable('data.txt')
t = 2×4 table
Var1 Var2 Var3 Var4 ____________ ______ ______ _________ 01:00:00.914 47.958 16.921 {'plane'} 01:00:03.008 47.96 16.919 {'plane'}
plot(t.Var2,t.Var3)

Prodotti


Release

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by