-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathManchester.m
More file actions
54 lines (40 loc) · 949 Bytes
/
Manchester.m
File metadata and controls
54 lines (40 loc) · 949 Bytes
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
close all;
clear all;
clc;
bits = [0 1 0 0 1 1];
bitrate = 1;
voltage = 5;
sampling_rate = 1000;
sampling_time = 1/sampling_rate;
end_time = length(bits)/bitrate;
time = 0:sampling_time:end_time;
index = 1;
for i = 1:length(time)
if bits(index) == 1
modulation(i) = -voltage;
else
modulation(i) = voltage;
end
if (time(i)*bitrate >= (index-bitrate/2))
modulation(i)= -modulation(i);
end
if time(i)*bitrate >= index
index = index+1;
end
end
plot(time, modulation);
axis([0 end_time -voltage-2 voltage+2]);
grid on;
index = 1;
for i = 1:length(modulation)
if modulation(i) == -voltage && time(i)*bitrate<(index-bitrate/2)
demodulation(index) = 1;
end
if modulation(i) == voltage && time(i)*bitrate<(index-bitrate/2)
demodulation(index) = 0;
end
if time(i)*bitrate >= index
index = index+1;
end
end
disp(demodulation);