Docs.rs
ad-plugins-rs-0.14.2
ad-plugins-rs 0.14.2
Permalink
Docs.rs crate page
Links
Repository
crates.io
Source
Owners
physwkim
Dependencies
ad-core-rs ^0.14.2
normal
asyn-rs ^0.14.2
normal
epics-base-rs ^0.14.2
normal
epics-bridge-rs ^0.14.2
normal
optional
epics-ca-rs ^0.14.2
normal
epics-pva-rs ^0.14.2
normal
optional
image ^0.25
normal
jpeg-decoder ^0.3
normal
jpeg-encoder ^0.6
normal
lz4_flex ^0.11
normal
netcdf3 ^0.6
normal
parking_lot ^0.12
normal
rayon ^1
normal
optional
rust-hdf5 ^0.2
normal
rustfft ^6
normal
serde ^1
normal
serde_json ^1
normal
tiff ^0.9
normal
tokio ^1
normal
tracing ^0.1
normal
Versions
37.31%
of the crate is documented
Platform
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
Skip to main content
Module fft
ad_
plugins_
rs
0.14.2
Module fft
Module Items
Structs
Enums
Functions
In crate ad_
plugins_
rs
ad_plugins_rs
Module
fft
Copy item path
Source
Structs
§
FFTConfig
Configuration for FFT processing.
FFTProcessor
Enums
§
FFTDirection
FFT direction (forward or inverse transform).
FFTMode
FFT mode selection.
Functions
§
fft_
1d_
rows
Compute 1D FFT magnitude for each row of a 2D array using rustfft. Returns a Float64 array with half the width (positive frequencies only, matching C++). Magnitudes are normalized by N (C++:
FFTAbsValue[j] = sqrt(...) / nTimeX
).
fft_2d
Compute 2D FFT magnitude using separable row-then-column FFT via rustfft.