标签: matlab matlab-figure roc
我很难从给定的roc矩阵中绘制roc曲线。 我使用以下代码:
>> t = [0 0 0 1 0 1 1 1 0 1]; >> o = [0 0 0 1 0 1 0 1 0 1]; >> [tpr,fpr,thres] = roc(t,o);
现在我需要从这些值中绘制roc曲线而不使用matlab中的plotroc函数。我试着用
plot(tpr,fpr);
但是这与plotroc(t,o)没有显示相同的结果。还有其他替代方法吗?
plotroc(t,o)