How to export a DataMatrix to excel ???
2 ビュー (過去 30 日間)
古いコメントを表示
Hi can someone help with this? I would like to export this DataMatrix to excel that includes the metadata created.
x1=[10 8 10]'; x2=[30 29 45]'; x3=[40 15 85]'; x4=[3 2 8]';
x=[x1,x2,x3,x4]
import bioma.data.*; z=DataMatrix(x); z = set(z,'Name','ParentCountry'); z = set(z,'ColNames','Parent'); z = set(z,'RowNames','Time');
xlswrite('C:\matlab\excel\test.xls', z ,'parent','A1');
0 件のコメント
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Import and Management についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!