how to convert mat file into excel or csv

how to convert mat file into excel or csv

2 Commenti

What data mat file has?
time vs acceleration data

Accedi per commentare.

Risposte (1)

KSSV
KSSV il 16 Lug 2021
Read about the function writetable.

2 Commenti

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') ;

Accedi per commentare.

Commentato:

il 16 Lug 2021

Community Treasure Hunt

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

Start Hunting!

Translated by