pub struct RealPlanND<T: Float> { /* private fields */ }Expand description
A plan for N-dimensional real-to-complex and complex-to-real transforms.
Implementations§
Source§impl<T: Float> RealPlanND<T>
impl<T: Float> RealPlanND<T>
Sourcepub fn execute_r2c(&self, input: &[T], output: &mut [Complex<T>])
pub fn execute_r2c(&self, input: &[T], output: &mut [Complex<T>])
Execute R2C transform.
Sourcepub fn execute_c2r(&self, input: &[Complex<T>], output: &mut [T])
pub fn execute_c2r(&self, input: &[Complex<T>], output: &mut [T])
Execute C2R transform.
Auto Trait Implementations§
impl<T> Freeze for RealPlanND<T>
impl<T> RefUnwindSafe for RealPlanND<T>where
T: RefUnwindSafe,
impl<T> Send for RealPlanND<T>
impl<T> Sync for RealPlanND<T>
impl<T> Unpin for RealPlanND<T>where
T: Unpin,
impl<T> UnwindSafe for RealPlanND<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