Effacer les filtres
Effacer les filtres

How to write specific rows and columns to excel sheet

5 vues (au cours des 30 derniers jours)
Muhammad
Muhammad le 15 Avr 2013
Hi, I want to export specific data from my matrix to excel sheet. For example: matrix dimension is 15000 x 500. i want to export data from row 3000 to 6000 to the excel sheet.
Thanking in anticipation, Best Regards.

Réponses (2)

Jan
Jan le 15 Avr 2013
The documentation of xlswrite explains, how to insert data in a specified range. See:
doc xlswrite
When you want to export a part of your data only, simple crop them by indexing:
data = rand(15000, 500);
xlswrite('FileName.xls', data(3000:6000, :));

Azzi Abdelmalek
Azzi Abdelmalek le 15 Avr 2013
% If A is your matrix
B=A(3000:6000,:)
xlswrite('yourfile.xls',B)

Community Treasure Hunt

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

Start Hunting!

Translated by