在python中,何谓Matlab db2pow?它在MATLAB中的语法如下:
db2pow
y = db2pow(ydb)
我没有在转换function的python中找到这个decibel to power。
function
decibel to power
谢谢
发布于 2022-10-13 16:49:19
def db2pow(ydb): return numpy.power(10, ydb/10)
https://stackoverflow.com/questions/74059031
相似问题