Hello,
I have a matrix 'm' with 373 cell. each containting 2-d matrix of different size. I want to use 'xlswrite' to write the contents of each table on different sheets of the same file. Can someone please help me in this regard?

댓글 수: 2

Walter Roberson
Walter Roberson 2018년 5월 25일
Is there a particular reason you are not using writetable() to write those tables? You can pass 'Sheetname' to writetable()
Mudasser Seraj
Mudasser Seraj 2018년 5월 25일
편집: Mudasser Seraj 2018년 5월 25일
No, there's no particular reason. If I want to use writetable(), then what should be the code? Is it possible to write them as a sequence of sheets?

댓글을 달려면 로그인하십시오.

 채택된 답변

Walter Roberson
Walter Roberson 2018년 5월 25일

0 개 추천

filename = 'MySpreadsheet.xls';
for sheet = 1 : length(m)
writetable(m{sheet}, filename, 'sheet', sheet)'
end

댓글 수: 3

Mudasser Seraj
Mudasser Seraj 2018년 5월 25일
I am getting this error after a while:
"Error using writetable (line 124)
Unable to write to file 'MyDatabase.xlsx'. You may not have write permissions or the file may be open by another application."
Walter Roberson
Walter Roberson 2018년 5월 26일
The first thing I would try would be to add a pause(5) after the writetable() to give the previous action time to finish.
Mudasser Seraj
Mudasser Seraj 2018년 5월 28일
Yeah. That worked perfectly. Thank you so much.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

태그

질문:

2018년 5월 25일

댓글:

2018년 5월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by