Filter löschen
Filter löschen

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

5 Ansichten (letzte 30 Tage)
Ara
Ara am 25 Aug. 2022
Bearbeitet: Ara am 25 Aug. 2022
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 Kommentare
Stephen23
Stephen23 am 25 Aug. 2022
save('RO-2013-equinox.mat','data')
% ^ ^ this needs to be the name of a variable
Ara
Ara am 25 Aug. 2022
Bearbeitet: Ara am 25 Aug. 2022
Thank you. I wish you write in answer so that I can accept it and vote to you.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

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

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by