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_01_05.m
Package: 现代通信系统matlab版源代码.zip [view]
Upload User: loeagle
Upload Date: 2013-03-02
Package Size: 1236k
Code Size: 0k
Category:
Communication Document
Development Platform:
Matlab
- % MATLAB script for Illustrative Problem 5.1.
- df=0.01;
- fs=10;
- ts=1/fs;
- t=[-5:ts:5];
- x1=zeros(size(t));
- x1(41:51)=t(41:51)+1;
- x1(52:61)=ones(size(x1(52:61)));
- x2=zeros(size(t));
- x2(51:71)=x1(41:61);
- [X1,x11,df1]=fftseq(x1,ts,df);
- [X2,x21,df2]=fftseq(x2,ts,df);
- X11=X1/fs;
- X21=X2/fs;
- f=[0:df1:df1*(length(x11)-1)]-fs/2;
- plot(f,fftshift(abs(X11)))
- figure
- plot(f(500:525),fftshift(angle(X11(500:525))),f(500:525),fftshift(angle(X21(500:525))),'--')