.TXT data into matrix Matlab

1 次查看(过去 30 天)
Michal Cerny
Michal Cerny 2022-11-2
回答: Voss 2022-11-2
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 个)

Voss
Voss 2022-11-2
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)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by