pub struct SplitPlanND<T: Float> { /* private fields */ }Expand description
A plan for N-dimensional split-complex transforms.
Implementations§
Source§impl<T: Float> SplitPlanND<T>
impl<T: Float> SplitPlanND<T>
Sourcepub fn new(dims: &[usize], direction: Direction, _flags: Flags) -> Option<Self>
pub fn new(dims: &[usize], direction: Direction, _flags: Flags) -> Option<Self>
Create an N-dimensional split-complex plan.
Sourcepub fn execute(
&self,
in_real: &[T],
in_imag: &[T],
out_real: &mut [T],
out_imag: &mut [T],
)
pub fn execute( &self, in_real: &[T], in_imag: &[T], out_real: &mut [T], out_imag: &mut [T], )
Execute the N-dimensional split-complex transform.
Sourcepub fn execute_inplace(&self, real: &mut [T], imag: &mut [T])
pub fn execute_inplace(&self, real: &mut [T], imag: &mut [T])
Execute in-place N-dimensional split-complex transform.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for SplitPlanND<T>
impl<T> RefUnwindSafe for SplitPlanND<T>where
T: RefUnwindSafe,
impl<T> Send for SplitPlanND<T>
impl<T> Sync for SplitPlanND<T>
impl<T> Unpin for SplitPlanND<T>where
T: Unpin,
impl<T> UnsafeUnpin for SplitPlanND<T>
impl<T> UnwindSafe for SplitPlanND<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more