# template tile for Lab #7, Task #2 import numpy import waveforms as w import lab7 # receive amplitude-modulated transmission: def am_receive(samples,fc,samples_per_bit,channel_bw): ####### # copy your Task 1 code for am_receive to here # but remove all the plot code ###### pass if __name__ == '__main__': # construct an RF spectrum containing 5 transmitter # channels, each sending a different random # message. Call am_receive to receive the # message on each channel, verify the results. lab7.checkoff(am_receive,'L7_2')