How to get data from file to matrix?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi, I want to read a TXT file (this file has 35 columns and 351 rows) and save all the data to a matrix (35 x 351).
I'm trying with the following code:
formatSpec = '%d';
sizeA = [351 35];
A = fscanf(fileID,formatSpec,sizeA);
It creates the matrix (35 x 351) and saves the data, but no propperly.
What I want is, for example, read the first line of the TXT, then storage that line in the first row of the matrix.
Thanks
댓글 수: 0
채택된 답변
dpb
2019년 3월 13일
>> A=importdata('ionos.txt');
>> whos A
Name Size Bytes Class Attributes
A 351x35 98280 double
>> A(1:5,1:10) % see what a little bit of it looks like...
ans =
49 0 49 23 46 25 45 15 49 25
49 0 49 20 48 15 22 1 49 23
49 0 49 24 49 25 49 21 47 25
49 0 49 13 49 49 42 0 25 25
49 0 49 24 48 26 48 19 44 20
>>
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Workspace Variables and MAT Files에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!