How to convert a .mat vector into a .csv file?

4 views (last 30 days)
I'm going to convert a .mat vector to a .csv one.
Thanks!
  4 Comments
Mudit Chaturvedi
Mudit Chaturvedi on 19 Jul 2021
Hello Hamid!
I understand you are trying to convert a .mat vector to a .csv one.
You can do that by using the csvwrite function.
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
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.

Sign in to comment.

Accepted Answer

KSSV
KSSV on 19 Jul 2021
To load the matfile data into MATLAB use load. To write that variable into csv file use writetable. Read about both the functions.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!