import data from .dat file
조회 수: 61 (최근 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!