Respective matrices for different sheets in imported file frin excel

조회 수: 2 (최근 30일)
JL
JL 2020년 6월 3일
댓글: JL 2020년 6월 3일
I have 3 sheets in the 'scheduling.xlsx', with roomTable(sheet 1), contentTable (sheet 2), uniqueTable(sheet 3)
filename = 'scheduling.xlsx';
roomTable = readtable(filename)
Using the code above, I can only see roomTable but not the rest when I use this method
contentTable = readtable(filename,2);
uniqueTable = readtable(filename,3);

채택된 답변

Stephan
Stephan 2020년 6월 3일
편집: Stephan 2020년 6월 3일
contentTable = readtable(filename,'sheet',2);
uniqueTable = readtable(filename,'sheet',3);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Import from MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by