bundles / scipy 1.17.1 / scipy / signal / _filter_design / lp2hp
function
scipy.signal._filter_design:lp2hp
Signature
def lp2hp ( b , a , wo = 1.0 ) Summary
Transform a lowpass filter prototype to a highpass filter.
Extended Summary
Return an analog high-pass filter with cutoff frequency wo from an analog low-pass filter prototype with unity cutoff frequency, in transfer function ('ba') representation.
Parameters
b: array_likeNumerator polynomial coefficients.
a: array_likeDenominator polynomial coefficients.
wo: floatDesired cutoff, as angular frequency (e.g., rad/s). Defaults to no change.
Returns
b: array_likeNumerator polynomial coefficients of the transformed high-pass filter.
a: array_likeDenominator polynomial coefficients of the transformed high-pass filter.
Notes
This is derived from the s-plane substitution
This maintains symmetry of the lowpass and highpass responses on a logarithmic scale.
Array API Standard Support
lp2hp has experimental support for Python Array API Standard compatible backends in addition to NumPy. Please consider testing these features by setting an environment variable SCIPY_ARRAY_API=1 and providing CuPy, PyTorch, JAX, or Dask arrays as array arguments. The following combinations of backend and device (or other capability) are supported.
==================== ==================== ==================== Library CPU GPU ==================== ==================== ==================== NumPy ✅ n/a CuPy n/a ✅ PyTorch ✅ ✅ JAX ⛔ ⛔ Dask ⚠️ computes graph n/a ==================== ==================== ====================
See
dev-arrayapifor more information.
Examples
from scipy import signal import matplotlib.pyplot as plt✓
lp = signal.lti([1.0], [1.0, 1.0]) hp = signal.lti(*signal.lp2hp(lp.num, lp.den)) w, mag_lp, p_lp = lp.bode() w, mag_hp, p_hp = hp.bode(w)✓
plt.plot(w, mag_lp, label='Lowpass') plt.plot(w, mag_hp, label='Highpass') plt.semilogx()✗
plt.grid(True)
✓plt.xlabel('Frequency [rad/s]') plt.ylabel('Amplitude [dB]') plt.legend()✗
See also
Aliases
-
scipy.signal.lp2hp