{ } Raw JSON

bundles / scipy latest / scipy / signal / _filter_design / lp2bp_zpk

function

scipy.signal._filter_design:lp2bp_zpk

source: /scipy/signal/_filter_design.py :3180

Signature

def   lp2bp_zpk ( z p k wo = 1.0 bw = 1.0 )

Summary

Transform a lowpass filter prototype to a bandpass filter.

Extended Summary

Return an analog band-pass filter with center frequency wo and bandwidth bw from an analog low-pass filter prototype with unity cutoff frequency, using zeros, poles, and gain ('zpk') representation.

Parameters

z : array_like

Zeros of the analog filter transfer function.

p : array_like

Poles of the analog filter transfer function.

k : float

System gain of the analog filter transfer function.

wo : float

Desired passband center, as angular frequency (e.g., rad/s). Defaults to no change.

bw : float

Desired passband width, as angular frequency (e.g., rad/s). Defaults to 1.

Returns

z : ndarray

Zeros of the transformed band-pass filter transfer function.

p : ndarray

Poles of the transformed band-pass filter transfer function.

k : float

System gain of the transformed band-pass filter.

Notes

This is derived from the s-plane substitution

This is the "wideband" transformation, producing a passband with geometric (log frequency) symmetry about wo.

Array API Standard Support

lp2bp_zpk 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                   ⚠️ no JIT
Dask                  ⚠️ computes graph     n/a                 
====================  ====================  ====================

See dev-arrayapi for more information.

Examples

Use the 'zpk' (Zero-Pole-Gain) representation of a lowpass filter to transform it to a bandpass filter with a center frequency wo and bandwidth bw.
from scipy.signal import lp2bp_zpk
z   = [ 5 + 2j ,  5 - 2j ]
p   = [ 7      ,  -16    ]
k   = 0.8
wo  = 0.62
bw  = 15
lp2bp_zpk(z, p, k, wo, bw)

See also

bilinear
lp2bp
lp2bs_zpk
lp2hp_zpk
lp2lp_zpk

Aliases

  • scipy.signal.lp2bp_zpk

Referenced by

This package