I am working on a few signal processing concepts. And I prefer to use Python over MATLAB.
I require the complementary CDF of the Gaussian to model my system.
I was able to write MATLAB's qfunc()
as:
from scipy import special as sp
def qfunc(arg):
return 0.5-0.5*sp.erf(arg/1.414)
However, how would I write a similar function for qfuncinv()
?