Files
Algorithm/OS_Pd_Fun.m
Nicole 34c17ce82a CFAR
CFAR方法实现
2020-09-06 15:20:13 +08:00

4 lines
229 B
Matlab
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
function [Pd]=OS_Pd_Fun(R,k,T,lammbd)
%计算OS-CFAR的检测概率
%输入参数位R参考单元数据k选取第k个排序值作为背景估计值,lammbd:信噪比,T检测门限
Pd=k*nchoosek(R,k)*gamma(R-k+1+T/(1+lammbd))*gamma(k)/gamma(R+T/(1+lammbd)+1);