pub struct SplitPlan3D<T: Float> { /* private fields */ }Expand description
A plan for 3D split-complex transforms.
Implementations§
Source§impl<T: Float> SplitPlan3D<T>
impl<T: Float> SplitPlan3D<T>
Sourcepub fn new(
n0: usize,
n1: usize,
n2: usize,
direction: Direction,
_flags: Flags,
) -> Option<Self>
pub fn new( n0: usize, n1: usize, n2: usize, direction: Direction, _flags: Flags, ) -> Option<Self>
Create a 3D 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 3D 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 3D split-complex transform.
Auto Trait Implementations§
impl<T> Freeze for SplitPlan3D<T>
impl<T> RefUnwindSafe for SplitPlan3D<T>where
T: RefUnwindSafe,
impl<T> Send for SplitPlan3D<T>
impl<T> Sync for SplitPlan3D<T>
impl<T> Unpin for SplitPlan3D<T>where
T: Unpin,
impl<T> UnwindSafe for SplitPlan3D<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