Struct LltRegularization
pub struct LltRegularization<E>where
E: ComplexField,{
pub dynamic_regularization_delta: <E as ComplexField>::Real,
pub dynamic_regularization_epsilon: <E as ComplexField>::Real,
}
Expand description
Dynamic LLT regularization.
Values below epsilon
in absolute value, or with a negative sign are set to delta
with
a positive sign.
Fields§
§dynamic_regularization_delta: <E as ComplexField>::Real
Regularized value.
dynamic_regularization_epsilon: <E as ComplexField>::Real
Regularization threshold.
Trait Implementations§
§impl<E> Clone for LltRegularization<E>
impl<E> Clone for LltRegularization<E>
§fn clone(&self) -> LltRegularization<E>
fn clone(&self) -> LltRegularization<E>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<E> Debug for LltRegularization<E>
impl<E> Debug for LltRegularization<E>
§impl<E> Default for LltRegularization<E>where
E: ComplexField,
impl<E> Default for LltRegularization<E>where
E: ComplexField,
§fn default() -> LltRegularization<E>
fn default() -> LltRegularization<E>
Returns the “default value” for a type. Read more
impl<E> Copy for LltRegularization<E>
Auto Trait Implementations§
impl<E> Freeze for LltRegularization<E>
impl<E> RefUnwindSafe for LltRegularization<E>
impl<E> Send for LltRegularization<E>
impl<E> Sync for LltRegularization<E>
impl<E> Unpin for LltRegularization<E>
impl<E> UnwindSafe for LltRegularization<E>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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