Bootstrap

MATLAB数据写入excel并添加表头

#data是一个n*1的矩阵
data = ['1';'2'];
A = [{'header'}; num2cell(data)];
xlswrite('test', A); #写不写.xls后缀都一样

在这里插入图片描述

;