We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47971d6 commit 1fc1334Copy full SHA for 1fc1334
commpy/channelcoding/README.md
@@ -107,9 +107,9 @@ noiseVar = 10**(-snrdB/10) # noise variance (power)
107
108
N_c = 10 # number of trials
109
110
-BER_soft = -9e99*np.ones(N_c)
111
-BER_hard = -9e99*np.ones(N_c)
112
-BER_uncoded = -9e99*np.ones(N_c)
+BER_soft = np.zeros(N_c)
+BER_hard = np.zeros(N_c)
+BER_uncoded = np.zeros(N_c)
113
114
for cntr in range(N_c):
115
0 commit comments