what is equivalent of Matlab db2pow in python?
Its syntax in MATLAB is like this:
y = db2pow(ydb)
I did not find this function in python which convert decibel to power.
thank you
CodePudding user response:
def db2pow(ydb):
return numpy.power(10, ydb/10)
