How can I convert a .txt file to .mat file?
99 views (last 30 days)
Show older comments
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 Comment
bilal amjad
on 24 Jul 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
Answers (2)
Guillaume
on 28 Jan 2015
M = dlmread('somefile.txt'); %Use a better name that M
save('somefile.mat', M);
3 Comments
Momin Shariff
on 8 Jun 2022
M = dlmread('somefile.txt'); %Use a better name that M
save('somefile.mat', M);
0 Comments
See Also
Categories
Find more on Workspace Variables and MAT Files in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!