How can I export .mat file to .xls file?
조회 수: 3 (최근 30일)
이전 댓글 표시
How can I export .mat file to .xls file? I am using xlswrite('filename.xls') but not working. I have 50x50 deta. Kindly help me.
댓글 수: 3
Infinite_king
2024년 8월 5일
You have to pass the matrix as input to 'xlswrite' function. For example - xlswrite(filename,matrix_name).
답변 (1개)
Cris LaPierre
2024년 8월 5일
편집: Cris LaPierre
2024년 8월 5일
I'd recommend using writematrix (homogenous data) or writetable (for table data type) after first loading the mat file variable to the MATLAB workspace (see load).
댓글 수: 1
Star Strider
2024년 8월 5일
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!