average value and confusion matrix
古いコメントを表示
i have specificity,sensitivity,accuracy and precision values.but unable to write the matlab code to generate average values for individual and cofusion matrix for 100 samples.plz help me out how to write the code
回答 (1 件)
the cyclist
2019 年 7 月 23 日
0 投票
Are you having trouble with the math, or with the MATLAB? This wikipedia page for the confusion matrix can help you with all the definitions and their relationships. (The colorful table on that page is really helpful.)
To get the confusion matrix, you'll need to calculate the following:
- true positive
- false positive
- true negative
- false negative
I believe you should be able to derive those from the information you have. Write those explicit formulas out on paper. Then it should be extremely straightforward to convert those into MATLAB code.
カテゴリ
ヘルプ センター および File Exchange で Mathematics についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!