how to calculate precision and recall in MATLAB?
Show older comments
how to calculate precision and recall in MATLAB?is there any builtin function for this
3 Comments
James Tursa
on 19 May 2015
Can you elaborate? I don't understand the question. MATLAB by default uses double precision, but it also has a single precision type available. There is also extended precision available with vpa from the Symbolic Toolbox.
sa mi
on 22 May 2015
sa mi
on 23 May 2015
Answers (1)
Salma Hassan
on 29 Jan 2018
Edited: Salma Hassan
on 29 Jan 2018
2 votes
[Xpr,Ypr,Tpr,AUCpr] =perfcurve(targets, scores, 1, 'xCrit', 'reca', 'yCrit', 'prec');
plot(Xpr,Ypr)
xlabel('Recall'); ylabel('Precision')
title(['Precision-recall curve (AUC: ' num2str(AUCpr) ')'])
****************or you can use these equations
p=tp/(tp+fp);
r= tp/(tp+fn);
F= ( 2*p*r)/(p+r);
Categories
Find more on Optimization Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!