gusucode.com > ​多天线系统的各种信号检测算法matlab源码程序 > MIMO_detection/findPosition.m

    function [p]=findPosition(SINR,value,Tx)

p=0;
for tx=1:Tx
    if SINR(tx)==value
        p=tx;
        return;
    end
end

return;