摘要:
function out1 = plotroc(varargin) %PLOTROC Plot receiver operating characteristic. % % plotroc(targets,outputs) takes target data in 1-of-N form (each column % vector is all zeros with a single 1 ind... 阅读全文
摘要:
function [tpr,fpr,thresholds] = roc(targets,outputs) %ROC Receiver operating characteristic. % % The receiver operating characteristic is a metric used to check % the quality of classifiers. For ea... 阅读全文
摘要:
function [X,Y,T,auc,optrocpt,subY,subYnames] = ... perfcurve(labels,scores,posClass,varargin) %PERFCURVE Compute Receiver Operating Characteristic (ROC) curve or other % performance curve for c... 阅读全文