Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我能够使用 Signal Anaysis 工具箱在 Matlab 中显示声学数据,但将其转换为 dB 几乎没有挑战。我对这种处理方式真的很陌生。请问有人可以帮忙吗?我还打算从结果信号中去除 58 dB。我有数据,如果有帮助,我可以附上它。谢谢
dB 是一个比率,而不是一个绝对值。通常,您可能会将某些内容表示为相对于某个参考的 dB,例如“dB re full scale”或“dB re 1V”。dB 值计算如下:
db = 20 * log10 ( V / V0 )
哪里V0是参考,V是感兴趣的价值。
V0
V
使用上述值,您对“消除 58 dB”的要求转化为将当前值乘以10 ^ -(58 / 20)= 0.001259。
10 ^ -(58 / 20)
0.001259