Why do I get Excel error when using writetable command ?
이전 댓글 표시
Hi All
I have the TT parameter as :
[c1,hist,edges,rmm,idx] = rainflow(Z,t);
TT = array2table(c,'VariableNames',{'Count','Range','Mean','Start','End'});
While I have used to convert TT from a timetable to table with :
TT=timetable2table(TT);
I use the
writetable(TT,'output_file.xlsx'); % assumed filename "output_file "
but I get the error :
Error using writetable (line 124)
Unable to write to sheet '' in file 'Ystat.xlsx'. Disable sheet protection, disable workbook's Mark as Final
option, and ensure input does not exceed cell capacity.
TT1=array2table(TT);
writetable(TT1,name);
and I get :
Error using writetable (line 124)
Index exceeds matrix dimensions.
댓글 수: 4
farzad
2019년 12월 26일
Walter Roberson
2019년 12월 26일
What is size(TT)?
farzad
2019년 12월 27일
farzad
2019년 12월 27일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!