-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
60 lines (40 loc) · 1.87 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
M-QAM Simulator -- ETSIT-UPM LTDS 2010-2011
M-QAM Simulator on Matlab. Simulates digital data modulated with M-QAM
passing through an AWGN channel.
Authors:
Luis Antonio Úbeda Medina ([email protected])
Héctor Veiga Ortiz ([email protected])
Copyright 2010 Héctor Veiga Ortiz and Luis Antonio Úbeda Medina.
M-QAM Simulator is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
M-QAM Simulator is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with M-QAM Simulator. If not, see <http://www.gnu.org/licenses/>.
-------------
QUICK GUIDE:
+ M-QAM_Simulation.m
It simulates the system and estimates a BER for an SNR given. Type of
M-QAM used is selected as well.
Input data:
- longitud: amount of bits to be tested
- M: deepness of modulation. 1 = 4-QAM, 2 = 16-QAM, 3 = 64-QAM, ..
- SNR: Signal Noise Ratio for the AWGN channel in dB.
Example: M-QAM_Simulation(100,2,10)
+ M-QAM_Election.m
It analyses several QAM modulation schemas to choose the one which
gives us more binary speed. SNR of channel and a max BER are given.
Input data:
- SNR - Signal Noise Ratio for the AWGN Channel in dB.
- BitErr - Maximun BER allowed.
Example: M-QAM_Election(5,0.01)
+ M-QAM_Comparison.m
It analyses several QAM modulation schemas returning the Bit Error Rate
from each one. SNR is given.
Input data:
- SNR - Signal Noise Ratio for the AWGN Channel in dB.
Example: M-QAM_Comparison(5)