abels-complex 0.6.2

Complex numbers with rectangular and polar representations
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Complex numbers with rectangular and polar representations.

#![cfg_attr(not(feature = "std"), no_std)]

mod f32;
mod f64;
mod polar;
mod rectangular;

pub use polar::*;
pub use rectangular::*;