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
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to