How to extract confusion-matrix from confusion-chart?

7 visualizzazioni (ultimi 30 giorni)
I am using Neural Networks Toolbox. It allows me to plot confusion Chart by using "plotconfusion" command. But it does not allows me to see confusion matrix in the workspace. I tried to use "confusionchart" command but it pops up an error.
Error: Error using confusionchart (line 64)
Expected m to be a square matrix.
I have also attached both matrices of Targets and Outputs.
Where,
"t.mat" is a Target Matrix and "y.mat" is an output Matrix.

Risposte (1)

Mohammad Sami
Mohammad Sami il 23 Gen 2020
You need to use the function confusionmat
actual = t;
predicted = y;
mat = confusionmat(actual,predicted);
  5 Commenti
Mohammad Sami
Mohammad Sami il 29 Gen 2020
Modificato: Mohammad Sami il 29 Gen 2020
What is the type of your data ? The function accepts the following types
Data Types: single | double | logical | char | string | cell | categorical

Accedi per commentare.

Categorie

Scopri di più su Sequence and Numeric Feature Data Workflows in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by