How to convert mnist dataset .txt file to .mat file?
조회 수: 5 (최근 30일)
이전 댓글 표시
Hello, I have to convert the text file ,that I am adding, to .mat file immediately.
I searched a lot about but ı couldnt do it correclty. Anyone could help me please immediately?
Thanks in advance.
채택된 답변
David Hill
2022년 7월 26일
Why not just:
r=readtable('mnistdata.txt');
r.Properties.VariableNames={'Name','Size','Bytes','Class'};
save r;
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Text Files에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!