pub type C64 = Complex<f64>;Expand description
A complex number with two 64-bit floating point fields.
That is, the analogy of f64 to complex values.
Aliased Type§
#[repr(C)]pub struct C64 {
pub re: f64,
pub im: f64,
}Fields§
§re: f64Real portion of the complex number
im: f64Imaginary portion of the complex number