How to export a matrix of numeric values to Excel using writematrix
조회 수: 12 (최근 30일)
이전 댓글 표시
Hello,
I am having the problem that, when I export a matrix of double numeric values to excel, these are exported as text, causing problems in further calculations that excel does with the data being exported. I can correct this easily in excel, but it is not efficient and this was not happening if I used xlswrite.
My line of code to export the data is:
writematrix(MaxMinStructExport.ExcelOutput', ExcelExport.Filename, 'Sheet','PRod MaxMin', 'Range', strcat('B',ExcelExport.Sess_ExRow))
Where my file name is of the format:
ExcelExport.Filename = 'Example.xlsx';
Is there any quick solution to this that I am missing? I've attempted the use of the name-value pair 'PreserveFormat', but this is giving me an error as an invalid parameter name.
Also, as a side question, I'd be curious on why xlswrite is not recommended by Matlab, and if as users we should avoid its use as it's likely to become obsolete in future Matlab releases.
Thanks in advance for your help.
Carlos
댓글 수: 2
Ameer Hamza
2020년 12월 7일
No, currently, there is no plan to remove xlswrite as written in the compatibility considerations section of xlswrite: https://www.mathworks.com/help/releases/R2020b/matlab/ref/xlswrite.html#mw_88a93783-cc81-4dbc-8146-46289887a551.
Also, what is the class of MaxMinStructExport.ExcelOutput.
채택된 답변
Ameer Hamza
2020년 12월 7일
The documentation mentions that the newer functions have better cross-platform support and performance as compared to xlswrite.
As you correctly identified, if the matrix itself is a string, the writematrix() will save them as a string too (I think this behavior makes more sense, instead of automatically converting to numeric values, without informing the user). Creating a cell array and using writecell() will be the correct approach here; otherwise, you can keep using xlswrite() if it is working fine.
The other approach is to make two calls to writematrix() like this
writecell(string_rows_as_cell_arrays)
writematrix(numeric_matrix)
댓글 수: 2
Ameer Hamza
2020년 12월 7일
Yes, I/O operations are usually bottlenecked in most computing tasks. Two calls, in this case, will definitely be slower. xlswrite() will be correct in this case.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!