pub fn czt<S, D>(
x: &ArrayBase<S, D>,
m: Option<usize>,
w: Option<Complex<f64>>,
a: Option<Complex<f64>>,
axis: Option<i32>,
) -> FFTResult<ArrayD<Complex<f64>>>
Expand description
Functional interface to chirp z-transform
ยงParameters
x
: Input signalm
: Number of output points (default: length of x)w
: Ratio between points (default: exp(-2j*pi/m))a
: Starting point in complex plane (default: 1+0j)axis
: Axis along which to compute CZT (default: -1)