matlab 保存成csv逗号间隔的文件
dtime = d;
windspeed = w;
power = p;
BQ = BQ1';
Cell_T = table(dtime,windspeed,power,BQ);
writetable(Cell_T,[Name_equ{i,1},'.csv'],'Delimiter',',','QuoteStrings',true)
dtime = d;
windspeed = w;
power = p;
BQ = BQ1';
Cell_T = table(dtime,windspeed,power,BQ);
writetable(Cell_T,[Name_equ{i,1},'.csv'],'Delimiter',',','QuoteStrings',true)