how to read records line by line saved in m30.txt .
조회 수: 1 (최근 30일)
이전 댓글 표시
답변 (1개)
madhan ravi
2018년 11월 29일
편집: madhan ravi
2018년 11월 29일
Edited
Do you mean this?
fid=fopen('m30.txt','r')
f=textscan(fid,'%s','Delimiter','\n')
fclose(fid)
celldisp(f)
댓글 수: 3
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!