⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 computeauc.m

📁 Continuous Profile Models (CPM) Matlab Toolbox.
💻 M
字号:
%% function AUC = computeAUC(w)%%%% compute the AUC, assuming that:%% y=w(:,1);%% x=w(:,2);%% or... computeAUC([yVec;xVec]);%%%% function AUC = computeAUC(w)y=w(:,1);x=w(:,2);%% make sure x's are in increasing order[sortVal sortInd]=sort(x,'ascend');x=x(sortInd);y=y(sortInd);%% figure, plot(x(1:5),y(1:5))%% figure, plot(x,y);numChunks = length(x)-1;total = 0;%% calculate from left->right SAME AS smallest->biggestfor ch = 2:numChunks    ch1 = ch-1;    ch2 = ch;    width = x(ch2)-x(ch1);    height = mean(y(ch1:ch2));    contrib = width*height;    total = total + contrib;endAUC = total;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -