How to import excel file only one sheet and skip first column?
31 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
My excel file has some sheets, but i only want to import one sheet without first row and first column.
1 Kommentar
dpb
am 8 Sep. 2020
Use the 'Sheet' and 'Range' optional arguments to readtable or readmatrix
See the doc for examples.
Antworten (2)
Xavier
am 8 Sep. 2020
opts.Sheet = 'yourSheetName';
T = readtable('youWorkbook.xlsx',opts);
T(1, :) = [];
T(:, 1) = []
0 Kommentare
Abdolkarim Mohammadi
am 8 Sep. 2020
You should use readmatrix(). For example:
M = readmatrix (filename, 'Sheet', 'MySheet', 'Range','B2:Z10');
0 Kommentare
Siehe auch
Kategorien
Mehr zu Data Import from MATLAB 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!