The hello world example in examples/5G_NR_PUSCH.ipynb contains these lines:
x, b = pusch_transmitter(batch_size) # Generate transmit signal and info bits
y = channel([x, no]) # Simulate channel output
b_hat = pusch_receiver([x, no]) # Recover the info bits
The last line should use y instead of x, otherwise the influence of the channel will be ignored.
The hello world example in
examples/5G_NR_PUSCH.ipynb
contains these lines:The last line should use
y
instead ofx
, otherwise the influence of the channel will be ignored.