How to export data from matlab to excel file?

1 回表示 (過去 30 日間)
Ekta Sharma
Ekta Sharma 2016 年 6 月 15 日
コメント済み: Ekta Sharma 2016 年 6 月 15 日
I have applied confusion matrix on my images,now I want to export that data(True positive,False positive etc. values) to an excel file. After having all these values in excel file for different different images I have to apply summation operation on them.

採用された回答

Emanuele Gandola
Emanuele Gandola 2016 年 6 月 15 日
編集済み: Walter Roberson 2016 年 6 月 15 日
Hallo Ekta,
this is an example to save excel file on multiple sheet
filename = [path 'YourFile.xlsx'];
xlswrite(filename, Matrix{6,1}(:, 1:NClusters),'Sheet1');
xlswrite(filename, Matrix{7,1}(:, 1:NClusters),'Sheet2');
....
Where Matrix{}() is your selection
Emanuele
  1 件のコメント
Ekta Sharma
Ekta Sharma 2016 年 6 月 15 日
Thanks a lot for replying Sir. But may I know what is this NClusters?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by