Skip to content
This repository was archived by the owner on Mar 25, 2024. It is now read-only.

Commit 3b5c4af

Browse files
committed
Depricated method
1 parent f89eb58 commit 3b5c4af

1 file changed

Lines changed: 1 addition & 23 deletions

File tree

ModulationPy/ModulationPy.py

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -168,29 +168,7 @@ def __bin_modulate(self, x):
168168
modulated.append(self.code_book[s])
169169
return modulated
170170

171-
def __dec_modulate(self, x):
172-
173-
''' Modulates decimal stream.
174-
Parameters
175-
----------
176-
x : 1-D ndarray of ints
177-
Decimal stream to be modulated.
178-
Returns
179-
-------
180-
modulated : list of complex values
181-
Modulated symbols (signal envelope).
182-
'''
183-
modulated = []
184-
for a in x:
185-
modulated.append(self.code_book[a])
186-
return modulated
187-
188-
189-
190-
'''
191-
192-
DEMODULATION ALGORITHMS
193-
'''
171+
''' DEMODULATION ALGORITHMS '''
194172

195173
def __ApproxLLR(self, x, noise_var):
196174

0 commit comments

Comments
 (0)