How to save ".txt" to ".mat"?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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
am 25 Aug. 2022
save('RO-2013-equinox.mat','data')
% ^ ^ this needs to be the name of a variable
Akzeptierte Antwort
Chunru
am 25 Aug. 2022
data=dlmread('RO-2013-equinox.txt');
save('RO-2013-equinox.mat', 'data'); % quote the variable name
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Workspace Variables and MAT-Files finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!