How do I get MATLAB to display the d' when my hit rate = 1 using the norminv function?

조회 수: 12 (최근 30일)
I am calculating d' using the following:
norminv(hit_rate) - norminv(fa_rate)
However, since my hit rate = 1, I am getting an Infinity value. Is there a way I could get MATLAB to overcome the Infinity from norminv(1) to give me my d' value?
Thanks so much for your help.

답변 (1개)

Jeff Miller
Jeff Miller 2021년 10월 19일
No, d' cannot be computed when an observed hit_rate is 1 or fa_rate is zero. One of the most common work-arounds for this problem is to replace hit_rate of 1 with 1-1/(2*n), where n is the number of observations that went into the computation of hit_rate. (You can think of this as the average of the observed hit rate and the hit rate that would have been observed if there had been one miss. Alternatively, you can think of it as the observed hit rate with 1/2 of a miss.)
Similarly, replace fa_rate = 0 with 1/(2*n), as if there had been 1/2 of a false alarm.

카테고리

Help CenterFile Exchange에서 Directed Graphs에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by