Passing values from an excel file to another using matlab
2 ビュー (過去 30 日間)
古いコメントを表示
I have a matrix in excel with negative values. I want to create a new matrix in an excel file with the absolute values of the previews one. Can anyone share with me the matlab code in order to accomplish this ? Any help could be useful.Thanks in advance.
0 件のコメント
採用された回答
Guillaume
2015 年 11 月 5 日
writetable(varfun(@abs, readtable('inputfile.xlsx')), 'outputfile.xlsx')
may do what you want.
5 件のコメント
Image Analyst
2015 年 11 月 5 日
What version do you have? I think readtable() came with R2013b or so. Can you attach your workbook?
その他の回答 (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!