Type Alias c64

Source
pub type c64 = Complex<f64>;
Expand description

Short type alias for Complex double precision type

Aliased Type§

#[repr(C)]
pub struct c64 { pub re: f64, pub im: f64, }

Fields§

§re: f64

Real portion of the complex number

§im: f64

Imaginary portion of the complex number

Trait Implementations§

Source§

impl ConstGenerator for c64

Source§

type OutType = Complex<f64>

The type of Array object returned by generate function
Source§

fn generate(&self, dims: Dim4) -> Array<Self::OutType>

Create an Array of dims size from scalar value self. Read more
Source§

impl ImplicitPromote<Complex<f32>> for c64

Source§

type Output = Complex<f64>

This type alias points to the type of the result obtained by performing a given binary option on given type and RHS.
Source§

impl ImplicitPromote<bool> for c64

Source§

type Output = Complex<f64>

This type alias points to the type of the result obtained by performing a given binary option on given type and RHS.
Source§

impl ImplicitPromote<f32> for c64

Source§

type Output = Complex<f64>

This type alias points to the type of the result obtained by performing a given binary option on given type and RHS.
Source§

impl ImplicitPromote<f64> for c64

Source§

type Output = Complex<f64>

This type alias points to the type of the result obtained by performing a given binary option on given type and RHS.
Source§

impl ImplicitPromote<i16> for c64

Source§

type Output = Complex<f64>

This type alias points to the type of the result obtained by performing a given binary option on given type and RHS.
Source§

impl ImplicitPromote<i32> for c64

Source§

type Output = Complex<f64>

This type alias points to the type of the result obtained by performing a given binary option on given type and RHS.
Source§

impl ImplicitPromote<i64> for c64

Source§

type Output = Complex<f64>

This type alias points to the type of the result obtained by performing a given binary option on given type and RHS.
Source§

impl ImplicitPromote<u16> for c64

Source§

type Output = Complex<f64>

This type alias points to the type of the result obtained by performing a given binary option on given type and RHS.
Source§

impl ImplicitPromote<u32> for c64

Source§

type Output = Complex<f64>

This type alias points to the type of the result obtained by performing a given binary option on given type and RHS.
Source§

impl ImplicitPromote<u64> for c64

Source§

type Output = Complex<f64>

This type alias points to the type of the result obtained by performing a given binary option on given type and RHS.
Source§

impl ImplicitPromote<u8> for c64

Source§

type Output = Complex<f64>

This type alias points to the type of the result obtained by performing a given binary option on given type and RHS.
Source§

impl ComplexFloating for c64