How to save ".txt" to ".mat"?

조회 수: 4 (최근 30일)
Ara
Ara 2022년 8월 25일
편집: Ara 2022년 8월 25일
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
Stephen23 2022년 8월 25일
save('RO-2013-equinox.mat','data')
% ^ ^ this needs to be the name of a variable
Ara
Ara 2022년 8월 25일
편집: Ara 2022년 8월 25일
Thank you. I wish you write in answer so that I can accept it and vote to you.

댓글을 달려면 로그인하십시오.

채택된 답변

Chunru
Chunru 2022년 8월 25일
data=dlmread('RO-2013-equinox.txt');
save('RO-2013-equinox.mat', 'data'); % quote the variable name

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Software Development Tools에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by