ferray-window 0.2.3

Window functions, vectorize, piecewise, and apply_along_axis for ferray
Documentation

ferray-window

Window functions and functional programming utilities for the ferray scientific computing library.

What's in this crate

  • Window functions: hann, hamming, blackman, kaiser, bartlett, gaussian, tukey, etc.
  • Functional: vectorize, piecewise, apply_along_axis, apply_over_axes

Usage

use ferray_window::{hann, hamming};

let w = hann(256, true)?;
let h = hamming(256, true)?;

This crate is re-exported through the main ferray crate with the window feature (enabled by default).

License

MIT OR Apache-2.0