MATLAB exports the data data in the table variable in the form of Excel

MATLAB exports the data data in the table variable in the form of Excel

1. Load the model

load('xxx.mat', 'data')

2. Variable value passing

emgData = data;

3. Write the path

excelFileName = 'xxxx.xlsx';

4. Export Excel

>> writetable(emgData, excelFileName);

Guess you like

Origin blog.csdn.net/m0_51581537/article/details/132669527