フィルターのクリア

.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 件のコメント
Davide Masiello
Davide Masiello 2022 年 11 月 2 日
I suggest reading the documentation for readmatrix.

サインインしてコメントする。

回答 (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 Center および File ExchangeLogical についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by