How to calculate sensitivity, specificity, F-score from confusion matrix ?

16 vues (au cours des 30 derniers jours)
Fatin Nurdiana Binti Jayah
Fatin Nurdiana Binti Jayah le 16 Juin 2023
Réponse apportée : Ishit le 18 Juin 2023
  1 commentaire
Mick
Mick le 16 Juin 2023
This might help (https://www.mathworks.com/matlabcentral/fileexchange/60900-multi-class-confusion-matrix)

Connectez-vous pour commenter.

Réponses (1)

Ishit
Ishit le 18 Juin 2023
Hi Fatin, Please use this code as reference.
disp('_____________Multiclass demo_______________')
disp('Runing Multiclass confusionmat')
n=100;m=2;
actual=round(rand(1,n)*m);
predict=round(rand(1,n)*m);
[c_matrix,Result,RefereceResult]= confusion.getMatrix(actual,predict);
Output for the file can be seen in in this link output.

Community Treasure Hunt

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

Start Hunting!

Translated by