⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 estchannels.m

📁 自己编写的uwb信道估计
💻 M
字号:
function [MPostion,signP] = EstChannelS(PowEstErr,imp_response, MPnum)

 if PowEstErr == 0
     temp = imp_response;%
 else
    temp = imp_response +  random('norm',0,sqrt(PowEstErr),1,length(imp_response));%
end

for m = 1 : MPnum
    MPostion(m) = find( abs(temp) == max(abs(temp)) );
    signP(m) = temp(MPostion(m));
    temp(MPostion(m)) = 0;
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -