| 188 | float GST::MatthewsCorrelationCoefficient() { return MCC(); }; |
| 189 | float GST::phi() { return MCC(); }; |
| 190 | float GST::MCC() |
| 191 | { |
| 192 | return (TP*TN - FP*FN)/sqrt((TP+FP) * (TP+FN) * (TN+FP) * (TN+FN)); |
| 193 | }; |
| 194 | |
| 195 | |
| 196 | float GST::FowlkesMallowsIndex() { return FM(); }; |