Effacer les filtres
Effacer les filtres

.TXT data into matrix Matlab

1 vue (au cours des 30 derniers jours)
Michal Cerny
Michal Cerny le 2 Nov 2022
Réponse apportée : Voss le 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
  1 commentaire
Davide Masiello
Davide Masiello le 2 Nov 2022
I suggest reading the documentation for readmatrix.

Connectez-vous pour commenter.

Réponses (1)

Voss
Voss le 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)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by