Trait ComplexifyArray

Source
pub trait ComplexifyArray<const N: usize> {
    // Required method
    fn complex(self) -> [c64; N];
}

Required Methods§

Source

fn complex(self) -> [c64; N]

Implementations on Foreign Types§

Source§

impl<T: IntoC64 + Copy, const N: usize> ComplexifyArray<N> for [T; N]

Source§

fn complex(self) -> [c64; N]

Implementors§