├── .gitignore ├── LICENSE ├── README.md ├── Testing └── demo.m ├── auc.m ├── auc_bootstrap.m ├── format_by_class.m └── roc.m /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian-lau/MatlabAUC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian-lau/MatlabAUC/HEAD/README.md -------------------------------------------------------------------------------- /Testing/demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian-lau/MatlabAUC/HEAD/Testing/demo.m -------------------------------------------------------------------------------- /auc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian-lau/MatlabAUC/HEAD/auc.m -------------------------------------------------------------------------------- /auc_bootstrap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian-lau/MatlabAUC/HEAD/auc_bootstrap.m -------------------------------------------------------------------------------- /format_by_class.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian-lau/MatlabAUC/HEAD/format_by_class.m -------------------------------------------------------------------------------- /roc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brian-lau/MatlabAUC/HEAD/roc.m --------------------------------------------------------------------------------