How to convert a .mat vector into a .csv file?
Show older comments
I'm going to convert a .mat vector to a .csv one.
Thanks!
4 Comments
KSSV
on 19 Jul 2021
What data .mat file has?
Hamid Rajabi
on 19 Jul 2021
Mudit Chaturvedi
on 19 Jul 2021
Hello Hamid!
I understand you are trying to convert a .mat vector to a .csv one.
1. Load the data from the .mat file
FileData = load('YourFileNameGoesHere.mat');
2. Write to the target csv file
csvwrite('TargetFileNameGoesHere.csv',FileData.VectorName);
Image Analyst
on 19 Jul 2021
@Mudit Chaturvedi, please put your answer down below in the Answers section (where you can get credit for it in reputation points) rather than up here in the comments section that is used to ask the poster for clarification and additional information or data.
Accepted Answer
More Answers (0)
Categories
Find more on Text 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!