wcdmareceivefilter.m

来自「对WCDMA的性能进行了仿真」· M 代码 · 共 28 行

M
28
字号
function y=WCDMAReceiveFilter(IncomingSignal,PulseShape,SamplesPerChip)
%*******************************************************************************
%function y=WCDMAReceiveFilter(IncomingSignal,PulseShape,SamplesPerChip)
%
%Copyright 2002 The Mobile and Portable Radio Research Group
%
%Filters and decimates the incoming complex-valued signal with the FIR impulse 
%reponse stored in PulseShape.  The decimation rate is equal to SamplesPerChip.
%Decimation is simply performed by filtering every SamplesPerChip'th output 
%sample.  The "delay" and "tail" due to the filtering is removed This fuction 
%works on matrix of signal data, where each column in the the matrix is a  
%different signal
%
%Parameters
%   Input
%      IncomingSignal   Matrix   Matrix of incoming signal data.  The signals
%                                must be placed columnwise in the matrix.
%      PulseShape       Vector   Contains the FIR fitler's impulse response
%      SamplesPerChip   Scalar   Contains the oversampling rate or "decimation" 
%                                rate
%
%   Output
%      y                Matrix   Matrix of the filtered and decimated signal
%                                data.  Each column in the matrix corresponds
%                                to the corresponding signal in IncomingSignal
%
%*******************************************************************************

⌨️ 快捷键说明

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