pub struct SamplingSVE<T>{ /* private fields */ }Expand description
Sampling-based SVE computation
This is the general SVE computation strategy that works with discretized kernels. It does NOT know about symmetry - it just processes a given discretized kernel matrix.
§Responsibility
- Remove weights from SVD results
- Convert to polynomials on the domain specified by segments
- Domain extension is caller’s responsibility
Implementations§
Source§impl<T> SamplingSVE<T>
impl<T> SamplingSVE<T>
Sourcepub fn new(
segments_x: Vec<T>,
segments_y: Vec<T>,
gauss_x: Rule<T>,
gauss_y: Rule<T>,
epsilon: f64,
n_gauss: usize,
) -> Self
pub fn new( segments_x: Vec<T>, segments_y: Vec<T>, gauss_x: Rule<T>, gauss_y: Rule<T>, epsilon: f64, n_gauss: usize, ) -> Self
Create a new SamplingSVE
This takes only the geometric information needed for polynomial conversion, not the kernel itself.
Sourcepub fn postprocess_single(
&self,
u: &DTensor<T, 2>,
s: &[T],
v: &DTensor<T, 2>,
) -> (PiecewiseLegendrePolyVector, Vec<f64>, PiecewiseLegendrePolyVector)
pub fn postprocess_single( &self, u: &DTensor<T, 2>, s: &[T], v: &DTensor<T, 2>, ) -> (PiecewiseLegendrePolyVector, Vec<f64>, PiecewiseLegendrePolyVector)
Post-process a single SVD result to create polynomials
This converts SVD results to piecewise Legendre polynomials on the domain specified by segments (e.g., [0, xmax] for reduced kernels).
Auto Trait Implementations§
impl<T> Freeze for SamplingSVE<T>where
T: Freeze,
impl<T> RefUnwindSafe for SamplingSVE<T>where
T: RefUnwindSafe,
impl<T> Send for SamplingSVE<T>
impl<T> Sync for SamplingSVE<T>
impl<T> Unpin for SamplingSVE<T>where
T: Unpin,
impl<T> UnwindSafe for SamplingSVE<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> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
Source§impl<T> IntoCloned<T> for T
impl<T> IntoCloned<T> for T
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.