Converting a .mat file to .xls
2 ビュー (過去 30 日間)
古いコメントを表示
Hi there,
Is there anyway to convert a .mat file to an excel file in matlab?
Thank you
0 件のコメント
回答 (2 件)
Kaustubha Govind
2012 年 2 月 24 日
You need to write MATLAB code to do this. First load the contents of the MAT-file into the workspace using the load command. You can then get the names of the variables in the workspace by using something like:
varNames = who;
Be careful to not get variables that you may have created before the MAT-file was loaded.
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!