How to convert a file from .mat to .csv
Mostra commenti meno recenti
I have to convert a data table from .mat to .csv but I don't know how to do that.
Risposte (2)
Image Analyst
il 30 Apr 2015
Try something like this
storedStructure = load(matFileName); % Read in data from the mat file.
dataTable = storedStructure.dataTable; % Whatever you called it when you saved it.
csvwrite(csvfile, dataTable); % Save to disk in csv format.
Giulia Zanetti
il 10 Mag 2015
0 voti
1 Commento
Walter Roberson
il 10 Mag 2015
storedStructure = load('YourFileNameGoesHere.mat');
Categorie
Scopri di più su Data Type Conversion in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!