understanding fscanf reshape combination in reading a file
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello, i have the following attached file where i have 3 subtables.
after running the code bellow ,i am trying to understand the following
1.why did it stop scanning on the end of the first subtable?
2.after the scaning my data in variable S looks as following , how reshape(s,2,[]) knows to make first row and the even members and second row as odd members of variable 's'?
Thanks.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1067885/image.jpeg)
fid=fopen('file.txt');
data={};
fgetl(fid);
fgetl(fid);
s=fscanf(fid,'%f');
댓글 수: 0
답변 (1개)
참고 항목
카테고리
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!