pub trait ToNative {
// Required methods
fn to_native(&self) -> Array2<Complex32>;
fn par_to_native(&self) -> Array2<Complex32>;
}
Required Methods§
Sourcefn to_native(&self) -> Array2<Complex32>
fn to_native(&self) -> Array2<Complex32>
Performs allocation of a native-aligned Complex32 array
Sourcefn par_to_native(&self) -> Array2<Complex32>
fn par_to_native(&self) -> Array2<Complex32>
Performs allocation of a native-aligned Complex32 array using rayon