How can I convert a .txt file to .mat file?

99 visualizaciones (últimos 30 días)
nivedita r
nivedita r el 28 de En. de 2015
Respondida: Momin Shariff el 8 de Jun. de 2022
I have a one dimensional input of floating point values which should be converted to a .mat file. How can i do it?
Example 0.453 0.987 0.7675 0.3478 0.1256 etc....
Is there a possibility of converting it to a .mat file? The .mat file should be usable in simulink.
  1 comentario
bilal amjad
bilal amjad el 24 de Jul. de 2018
>> data=importdata('Traindata_0.txt');
>> save('Traindata_0', 'data');
where ('Traindata_0.txt') is my text file containing very large data save ftn save it in .mat file

Iniciar sesión para comentar.

Respuestas (2)

Guillaume
Guillaume el 28 de En. de 2015
M = dlmread('somefile.txt'); %Use a better name that M
save('somefile.mat', M);
  3 comentarios
Kay Ping
Kay Ping el 6 de Jun. de 2018
save('somefile.mat', 'M'); % i took half hour to find out the two ''.... ==
Halil Ibrahim Uluoglu
Halil Ibrahim Uluoglu el 17 de Dic. de 2019
Thank you for solution.

Iniciar sesión para comentar.


Momin Shariff
Momin Shariff el 8 de Jun. de 2022
M = dlmread('somefile.txt'); %Use a better name that M
save('somefile.mat', M);

Categorías

Más información sobre Workspace Variables and MAT Files en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by