Module un_algebra::complex::complex[][src]

Algebraic trait implementations for complex numbers.

The complex numbers (ℂ) form a field. We assume the real and imaginary parts--or components--of a complex number are real numbers (or some numeric approximation to ℝ, e.g. floating point values).

In the absence of a complex number type in the Rust standard library, the complex number type used here is from the very handy num crate.

Re-exports

pub use num::traits::*;
pub use num::complex::*;

Traits

Real

Shorthand type alias for real number complex components.