how to convert mat file into excel or csv
Show older comments
how to convert mat file into excel or csv
Answers (1)
KSSV
on 16 Jul 2021
0 votes
Read about the function writetable.
2 Comments
Prashant Sasidharan
on 16 Jul 2021
KSSV
on 16 Jul 2021
Read the data into MATLAB using load. If your variabes are time and accl.
T = table(time,accl) ;
writetable(T,'test.xlsx') ;
Categories
Find more on Spreadsheets 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!