convertPowerToDecibel

Converts from power to dB. Instantaneous power is the squared amplitude of a signal, and can be a nice domain to work in at times. Precision: This uses fast_exp which under normal conditions has a peak error under -135dB over the useful range.

  1. float convertPowerToDecibel(float x)
  2. double convertPowerToDecibel(double x)
    pure nothrow @nogc
    double
    convertPowerToDecibel
    (
    double x
    )

Meta