cp0801_pathloss.m
来自「这是一个全面实现超宽带通信系统的matlab实现的仿真」· M 代码 · 共 23 行
M
23 行
%
% FUNCTION 8.1 : "cp0801_pathloss"
%
% Attenuates the input signal 'tx' according to
% the distance 'd' [m], the decaying factor 'gamma'
% and the constant term 'c0', which represents the
% reference attenuation at 1 meter.
%
% The function returns the attenuated signal 'rx'
% and the value of the channel gain 'attn'
%
% Programmed by Guerino Giancola
%
function [rx,attn] = cp0801_pathloss(tx,c0,d,gamma)
% -------------------------------
% Step One - Path loss evaluation
% -------------------------------
attn = (c0/sqrt(d^gamma));
rx = attn .* tx;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?