how to convert a matrix into excel format in MATLAB 2018B
조회 수: 11 (최근 30일)
이전 댓글 표시
how to convert a matrix into excel format. I have used writetable command, its not working..
답변 (1개)
Sahithi Metpalli
2020년 3월 5일
Hi,
You cannot directly write a matrix to excel in MATLAB2018b.You should first convert matrix to table and then use the writetable function as shown in the code below
table =array2table(matrix)
writetable(table,'filename.xls')
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Import from MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!