How to save ".txt" to ".mat"?
조회 수: 4 (최근 30일)
이전 댓글 표시
Dear All,
I have a file ".txt" and I want to save it to ".mat". I used this code and got this error.Please see below.
data=dlmread('RO-2013-equinox.txt');
>> save ('RO-2013-equinox.mat',data);
Error using save
Must be a string scalar or character vector.
I would appriciate to help me.
댓글 수: 2
Stephen23
2022년 8월 25일
save('RO-2013-equinox.mat','data')
% ^ ^ this needs to be the name of a variable
채택된 답변
Chunru
2022년 8월 25일
data=dlmread('RO-2013-equinox.txt');
save('RO-2013-equinox.mat', 'data'); % quote the variable name
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Software Development Tools에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!