how to convert mat file into excel or csv
Mostra commenti meno recenti
how to convert mat file into excel or csv
Risposte (1)
KSSV
il 16 Lug 2021
0 voti
Read about the function writetable.
2 Commenti
Prashant Sasidharan
il 16 Lug 2021
KSSV
il 16 Lug 2021
Read the data into MATLAB using load. If your variabes are time and accl.
T = table(time,accl) ;
writetable(T,'test.xlsx') ;
Categorie
Scopri di più su Spreadsheets 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!