Code covered by the BSD License
-
CDMA_GUI(varargin)
CDMA_GUI M-file for CDMA_GUI.fig
-
...
-
CDMA_Encode(TotalChips, ...
-
MakeSampled(Seq,Samples,Sampl...
-
MakeUnsampled(SampledSeq,Samp...
-
PNSeq (noofBits,ChipGenMethod...
Generates a PN sequence Using Linear Feedback Shift Register Method
-
RotateSeq(InSeq)
-
buttLPF(f,cutoff,n)
-
coaxTF(f,Zr,Len,b,a,Ur,Er,Sig...
-
coax_simulator(Samples,rate,t...
-
raisedCos (f,Tb,r)
Raised Cosine Filter
-
CDMA_Simulator.m
-
View all files
from
Coaxial Cable Based CDMA System Simulation
by Iftekhar Tanveer
This is a simulation of CDMA Encoding & Decoding Process using a coax channel.
|
| buttLPF(f,cutoff,n)
|
function [filtr] = buttLPF(f,cutoff,n)
%**************************************************************
% buttLPF
%
% Generates a matrix determining the transfer function of a
% Butterworth Filter.
%
% f = frequency vector.
% cutoff = cutoff frequency
% n = Order of Butterworth LPF
% *************************************************************
a = (f/cutoff).^(2*n);
H = 1./sqrt(ones(size(a))+a);
filtr=H;
|
|
Contact us at files@mathworks.com