how to convert mat file into excel or csv

how to convert mat file into excel or csv

Answers (1)

KSSV
KSSV on 16 Jul 2021
Read about the function writetable.

2 Comments

i have a mat file with acceleration data. I want to export it in excel
Read the data into MATLAB using load. If your variabes are time and accl.
T = table(time,accl) ;
writetable(T,'test.xlsx') ;

Sign in to comment.

Asked:

on 16 Jul 2021

Commented:

on 16 Jul 2021

Community Treasure Hunt

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

Start Hunting!