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 CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by