Borrar filtros
Borrar filtros

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

3 visualizaciones (últimos 30 días)
Ara
Ara el 25 de Ag. de 2022
Editada: Ara el 25 de Ag. de 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 comentarios
Stephen23
Stephen23 el 25 de Ag. de 2022
save('RO-2013-equinox.mat','data')
% ^ ^ this needs to be the name of a variable
Ara
Ara el 25 de Ag. de 2022
Editada: Ara el 25 de Ag. de 2022
Thank you. I wish you write in answer so that I can accept it and vote to you.

Iniciar sesión para comentar.

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Software Development Tools en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by