Exclude first 2 rows of .dat file when using load
이전 댓글 표시
I want to exclude the first two rows when using load
data = load('file.dat')
x = data(3:end,1);
y = data(3:end,2);
The one below obviously gives me a ASCII file error. But you get the idea of what I want.
답변 (1개)
madhan ravi
2018년 11월 19일
편집: madhan ravi
2018년 11월 19일
0 개 추천
convert your .dat to .txt and then follow your method
카테고리
도움말 센터 및 File Exchange에서 MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!