Modulator
Bases: object
Class representing modualtor.
Attributes:
Name | Type | Description |
---|---|---|
... |
|
Methods:
Name | Description |
---|---|
bpsk |
The purpose of this method is to modulate bit sequence using BPSK. |
Source code in src\modulator.py
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 |
|
bpsk(bit_seq)
Performs BPSK modulation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
bit_seq
|
NDArray[uint8]
|
Input bit seqence. |
required |
Returns:
Name | Type | Description |
---|---|---|
bpsk_out_seq |
NDArray[int8]
|
Seqence after BPSK modulation (channel input signal). |
Source code in src\modulator.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|