Too large data to write with xlswrite.
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have data of about 2 million rows extracted from scope, But a xlswrite give maximum of 1048576 rows. How can i change my code so that after covering first sheet, the remaining data automatically write in second sheet.
data(:,1)=f.time;
data(:,2)=f.signals(1).values(:,1);
vref=data(:,1);
vout=data(:,2);
xlswrite('f.xlsx',data,1);
0 Kommentare
Antworten (1)
Walter Roberson
am 12 Mai 2018
There is no option for that with xlswrite. You will need to break up the data yourself.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!