Help Please ! Undocumented ERROR message so dont know how to fix the problem

Gregory Ewing greg.ewing at canterbury.ac.nz
Tue May 2 02:11:22 EDT 2017


murdock wrote:
>     BW = float (input ("Enter the Receiver Bandwidth in Hz"))
>     Signal_to_Noise = float (input ("Enter the Signal to Noise in dB"))
>     RX_Sensitivity = float (input ("Enter the RX_Sensitivity in dBm"))
> #
>     print ("The Receiver Noise Figure = ",Hamath._Noise_Figure," dBm" )

I'm guessing you intend the three values you calculate to be
passed as parameters to the function:

    print("The Receiver Noise Figure = ", Hamath._Noise_Figure(BW, 
Signal_to_Noise, RX_Sensitivity), " dBm")

-- 
Greg



More information about the Python-list mailing list