Is there any other matlab function equivalent to xlswrite that work on macbook ?
12 ビュー (過去 30 日間)
古いコメントを表示
Hi everybody, Is there any other matlab function equivalent to xlswrite that work on macbook ? I heard about the "xlwrite" function, i did download the java thing but I don't know how to use it.
I get this error : Warning: Could not start Excel server for export. XLSWRITE will attempt to write file in CSV format
Thank you,
Meryem
0 件のコメント
採用された回答
Pariterre
2018 年 6 月 27 日
編集済み: Walter Roberson
2018 年 6 月 27 日
Hi Meryem,
As you tried, https://www.mathworks.com/matlabcentral/fileexchange/38591-xlwrite--generate-xls-x--files-without-excel-on-mac-linux-win, did work for me on Linux, but I never tried on Mac.
The error you reported (The POI library is not loaded in Matlab.) may just be due to the fact that you did not include the Apache POI function in you path (addpath('path_to_poi_functions')) which are provided with the function!
2 件のコメント
Pariterre
2018 年 6 月 27 日
there should be.. as soon as you use the command
addpath('path_to_poi_files')
matlab should be able to load them. Could you provide us with a minimalistic version of the code you use?
その他の回答 (1 件)
Walter Roberson
2018 年 6 月 27 日
We recommend using writetable(), which can work with csv, xls, and xlsx files. You might need to use array2table() to convert your data to table object.
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!