Type Alias c32

Source
pub type c32 = Complex<f32>;
Expand description

A complex number with 32-bit parts.

Aliased Type§

struct c32 {
    pub re: f32,
    pub im: f32,
}

Fields§

§re: f32

Real portion of the complex number

§im: f32

Imaginary portion of the complex number

Trait Implementations§

Source§

impl Element for c32

Source§

fn zero() -> Self

Return the zero element.
Source§

fn is_zero(&self) -> bool

Check if the element is zero.