Source code for deltasigma._undbp
# -*- coding: utf-8 -*-
# _undbp.py
# This module provides the undbp function.
# Copyright 2013 Giuseppe Venturini
# This file is part of python-deltasigma.
#
# python-deltasigma is a 1:1 Python replacement of Richard Schreier's
# MATLAB delta sigma toolbox (aka "delsigma"), upon which it is heavily based.
# The delta sigma toolbox is (c) 2009, Richard Schreier.
#
# python-deltasigma is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# LICENSE file for the licensing terms.
"""This module provides the undbp() function.
"""
from __future__ import division
import numpy as np
from ._utils import carray, restore_input_form, save_input_form
[docs]def undbp(x):
"""Convert ``x`` from dB to power.
The conversion is carried out according to the relationship:
.. math::
P_{\\mathrm{RMS}} = 10^{x/10}
**Parameters:**
x : scalar or sequence
The signal in dB to be converted.
**Returns:**
Prms : scalar or sequence
The RMS power corresponding to ``x``.
.. seealso:: :func:`undbm`, :func:`undbv`, :func:`dbp`, :func:`db`
"""
iform = save_input_form(x)
x = carray(x)
up = 10.**(x/10.)
return restore_input_form(up, iform)