Type Alias c32

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

Short type alias for Complex single precision type

Aliased Type§

#[repr(C)]
pub 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 ConstGenerator for c32

Source§

type OutType = Complex<f32>

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<f64>> for c32

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 c32

Source§

type Output = Complex<f32>

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 c32

Source§

type Output = Complex<f32>

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 c32

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 c32

Source§

type Output = Complex<f32>

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 c32

Source§

type Output = Complex<f32>

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 c32

Source§

type Output = Complex<f32>

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 c32

Source§

type Output = Complex<f32>

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 c32

Source§

type Output = Complex<f32>

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 c32

Source§

type Output = Complex<f32>

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 c32

Source§

type Output = Complex<f32>

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 c32