How can I convert a .txt file to .mat file?
99 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
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
Respuestas (2)
Momin Shariff
el 8 de Jun. de 2022
M = dlmread('somefile.txt'); %Use a better name that M
save('somefile.mat', M);
0 comentarios
Ver también
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!