convert multiple .txt into .mat in same folder
3 次查看(过去 30 天)
显示 更早的评论
I want to automatically convert multiple .txt files in a folder into .mat file in same folder . How can i do it programmatically?
2 个评论
Rik
2018-8-23
That depends on the contents of your txt files. What kind of variable should the file be loaded to? Once you have a script that converts the file to variables, it should be almost trivial to put that in a loop and run that for each file.
采纳的回答
Pierre845
2018-8-24
You need to load the text files first, by making a loop on the file names and using textscan (or dlmread) in the loop to load each file; then you concatenate the results in one single matrix, and to finish you use the 'save' function which will give you the .mat file you're after
3 个评论
Rik
2018-8-24
You should read the documentation for the functions mentioned, and/or post an example file and what form you want the variables to be.
更多回答(1 个)
Harshini Gangapuram
2019-3-24
Could you just share how were you able to do that?
1 个评论
Rik
2019-3-24
This is not an answer. Please post this as a comment on either answer or the question itself and then delete this answer.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!