scirs2-fft 0.4.0

Fast Fourier Transform module for SciRS2 (scirs2-fft)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Quantum-inspired Fourier Transform algorithms.
//!
//! This module provides circuit-level simulation of Quantum Fourier Transform (QFT)
//! and related quantum algorithms implemented in pure Rust on classical hardware.
//!
//! # Key algorithms
//! - **QFT**: n-qubit Quantum Fourier Transform with statevector simulation
//! - **IQFT**: Inverse Quantum Fourier Transform
//! - **QPE**: Quantum Phase Estimation using QFT as the readout register

pub mod phase_estimation;
pub mod qft;

pub use phase_estimation::*;
pub use qft::*;