oxiphoton 0.1.1

Pure Rust Computational Photonics & Optical Simulation Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Photonic Signal Processing (DSP) module.
//!
//! This module provides digital signal processing algorithms tailored for
//! photonic communications systems, including optical filters, modulation
//! formats, coherent receiver DSP, and core photonic DSP algorithms.

pub mod coherent_receiver;
pub mod dsp_algorithms;
pub mod filters;
pub mod modulation_formats;

pub use coherent_receiver::*;
pub use dsp_algorithms::*;
pub use filters::*;
pub use modulation_formats::*;