Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
ip_02_10.m
Package: 现代通信系统matlab版源代码.zip [view]
Upload User: loeagle
Upload Date: 2013-03-02
Package Size: 1236k
Code Size: 1k
Category:
Communication Document
Development Platform:
Matlab
- % MATLAB script for Illustrative Problem 2.10.
- N=1000; % number of samples
- for i=1:2:N,
- [X1(i) X1(i+1)]=gngauss;
- [X2(i) X2(i+1)]=gngauss;
- echo off ;
- end; % standard Gaussian input noise processes
- echo on ;
- A=[1 -0.9]; % lowpass filter parameters
- B=1;
- Xc=filter(B,A,X1);
- Xs=filter(B,A,X2);
- fc=1000/pi; % carrier frequency
- for i=1:N,
- band_pass_process(i)=Xc(i)*cos(2*pi*fc*i)-Xs(i)*sin(2*pi*fc*i);
- echo off ;
- end; % T=1 is assumed.
- echo on;
- % Determine the autocorrelation and the spectrum of the bandpass process.
- M=50;
- bpp_autocorr=Rx_est(band_pass_process,M);
- bpp_spectrum=fftshift(abs(fft(bpp_autocorr)));
- % Plotting commands follow.