pub type Complex<T> = Complex<T>;Expand description
A complex number (an alias for num_complex::Complex.
Aliased Type§
#[repr(C)]pub struct Complex<T> {
pub re: T,
pub im: T,
}Fields§
§re: TReal portion of the complex number
im: TImaginary portion of the complex number
Trait Implementations§
Source§impl HasArrayExt for Complex<f32>
impl HasArrayExt for Complex<f32>
Source§fn product_one() -> <Self as HasAfEnum>::ProductOutType
fn product_one() -> <Self as HasAfEnum>::ProductOutType
The base value of a
product operation.Source§fn zero_sum() -> <Self as HasAfEnum>::AggregateOutType
fn zero_sum() -> <Self as HasAfEnum>::AggregateOutType
The base value of a
sum operation.Source§impl HasArrayExt for Complex<f64>
impl HasArrayExt for Complex<f64>
Source§fn product_one() -> <Self as HasAfEnum>::ProductOutType
fn product_one() -> <Self as HasAfEnum>::ProductOutType
The base value of a
product operation.Source§fn zero_sum() -> <Self as HasAfEnum>::AggregateOutType
fn zero_sum() -> <Self as HasAfEnum>::AggregateOutType
The base value of a
sum operation.