import data from .dat file
58 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I intend to read data from the .dat file. Here each data set is sperated by '&', so if I use below script, it just reads only the first eight rows. However, I need to read the entire data stored in the .dat file.
B=importdata('test.dat');
Output data = B.data;
4 件のコメント
採用された回答
Voss
2023 年 10 月 31 日
fn = unzip('test.zip')
T = readtable('test.dat','FileType','text','Delimiter','\t','MultipleDelimsAsOne',true)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Import and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!