quant-mathema 0.0.1

Library of functions and primitives for quantative finance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Statistical functions
pub mod stats;

/// Smoothing functions
pub mod smoothing;

mod error;
/// Error type for `quant_mathema`
pub use error::Error;

/// Transformation functions
pub mod transforms;