unable to load .txt file. it shows the following error
조회 수: 11 (최근 30일)
이전 댓글 표시
load data file.txt Error using load Unable to read file 'data': no such file or directory.
댓글 수: 1
답변 (2개)
Shameer Parmar
2016년 6월 24일
You can do this..
Data = textread('abc.txt', '%s', 'delimiter', '')
Make sure that the abc.txt file is present in current directory.
It will create variable 'Data' which store all data from your text file..
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 File Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!