Description: 这是我收集的几个通信基础理论的Matlab仿真实现,包括bpsk、qpsk、ofdm以及信号衰减和延迟的仿真。尽管不是我本人原创,但比较都经典。文件为*.m格式-This is my collection of several communications infrastructure theory Matlab Simulation, including BPSK, QPSK, and the OFDM signal attenuation and delay in the simulation. Although it was not my original, but more are classics. M*. document format Platform: |
Size: 5120 |
Author:武昌盛 |
Hits:
Description: 仿真参数:800个载波,1024点IFFT,载波间频1,无多径和有延迟个码片仿真。调制方式是BPSK和QPSK-simulation parameters : 800 Carrier, the 1024-point IFFT, a carrier frequency between, No multi-path and the delay-chip simulation. BPSK modulation is QPSK Platform: |
Size: 8192 |
Author:ssssss |
Hits:
Description: 基础的OFDM系统仿真程序,用BPSK调制方式,给出使用OFDM和不使用OFDM两种方式下的误码率。-OFDM-based system simulation program, using BPSK modulation, given the use of OFDM and OFDM two ways not to use the bit error rate. Platform: |
Size: 3072 |
Author:杨丽 |
Hits:
Description: 采用MATLAB仿真BPSK-OFDM的BER特性。从理论和实际两方面把输出波形作为对比。-Using MATLAB simulation of BER of BPSK-OFDM characteristics. From both theoretical and practical aspects of the output waveform as a contrast. Platform: |
Size: 1024 |
Author: |
Hits:
Description: Obtain the CDF plots of PAPR from an OFDM BPSK transmission specified per IEEE 802.11a specification
Per the IEEE 802.11a specifications, we 52 have used subcarriers. Given so, the theoretical maximum expected PAPR is 52 (around 17dB). However, thanks to the scrambler, all the subcarriers in an OFDM symbol being equally modulated is unlikely.
Using a small script, the cumulative distribution of PAPR from each OFDM symbol, modulated by a random BPSK signal is obtained Platform: |
Size: 26624 |
Author:陈语恬 |
Hits:
Description: OFDM程序,这么安排矩阵的目的是为了构造共轭对称矩阵
共轭对称矩阵的特点是 在ifft/fft的矢量上 N点的矢量
在0,N/2点必须是实数 一般选为0
1至N/2点 与 (N/2)+1至N-1点关于N/2共轭对称- BPSK simulation using a carrier cosine wave with ISI
clc
close all
clear all
figure(1)
n=160
for i=1:n
data(i)= 2*round(rand)-1
end
create modulated BPSK signal
first expand the bit stream
exdata=[]
for i=1:length(data)
for rep=1:5
exdata= [exdata data(i)]
end
end
ts=.1
t=1:ts:80.9
carrier=cos(pi*t)
multiply expanded bitstream by cosine wave with carrier frequency
this is the BPSK that is to be transmitted over the channel
bpsk=carrier.*exdata
bpsk=[bpsk(length(bpsk)-1) bpsk(length(bpsk)) bpsk]
plot(bpsk)
generating the noise
p=rand(1,800)*2*pi
p=rand*2*pi
snr=10
r=sqrt(-1*(1/snr*log(1- rand)))
no = 5*(r.* exp(j*p))
no = (r.* exp(j*p))
value of alpha
al=rand+j*rand
al=1
Spreading channel with the alpha as the variable
for k=5:5:795
for l = 1:5
al=round(rand)+j*round(rand)
rec(k+l)=bpsk(k+l)+al*bpsk(k-5+l)
end
end
rxdata=rec+ no
begin demodulation
first multiply recie Platform: |
Size: 6146048 |
Author:卞敏捷 |
Hits:
Description: 代码包含的主要内容是AWGN信道上BPSK,QPSK,16QAM的调制解调,以及误码率计算过程,其中还有OFDM调制在信道上传输的仿真内容-Code contains the main contents of AWGN channel BPSK, QPSK, 16QAM modulation and demodulation, and bit error rate calculation process, in which there are OFDM modulation in the channel transmission simulation content Platform: |
Size: 13312 |
Author:吕思达 |
Hits:
Description: MATLAB实现的简单的OFDM模型源代码
这个Matlab程序是关于OFDM调制的。这里使用了BPSK调制,显示OFDM在误码率上的下降。-BPSK modulation with BER with and without OFDM Platform: |
Size: 75776 |
Author:zengjiuzhen |
Hits:
Description: the BER for BPSK in OFDM modulation in the
presence of Rayeligh fading channel simulation in matlab programme Platform: |
Size: 2048 |
Author:blackblood |
Hits:
Description: BPSK在OFDM系统不同信道下的误码率比较(This is a Script for computing the BER for BPSK in OFDM modulation in the AWGN channel.) Platform: |
Size: 3072 |
Author:吕同学
|
Hits: