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

I'm going to convert a .mat vector to a .csv one.
Thanks!

4 Comments

What data .mat file has?
only 1-digit integers
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);
@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

Asked:

on 19 Jul 2021

Commented:

on 19 Jul 2021

Community Treasure Hunt

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

Start Hunting!