pub struct BanachSpace {
pub p: f64,
pub dx: f64,
}Expand description
A discrete Banach space with Lᵖ norm.
Supports p-norms, dual space estimation, and bounded linear functional evaluation.
Fields§
§p: f64The exponent p for the Lᵖ norm (p >= 1).
dx: f64Grid spacing for integration approximation.
Implementations§
Source§impl BanachSpace
impl BanachSpace
Sourcepub fn dual_norm(&self, g: &[f64]) -> f64
pub fn dual_norm(&self, g: &[f64]) -> f64
Compute the dual Lᵍ norm where 1/p + 1/q = 1.
For p = 1 returns the L∞ norm; for p = ∞ returns the L¹ norm.
Sourcepub fn bounded_linear_functional(&self, f: &[f64], g: &[f64]) -> f64
pub fn bounded_linear_functional(&self, f: &[f64], g: &[f64]) -> f64
Evaluate a bounded linear functional φ(f) = ∫ g(x) f(x) dx.
g is the Riesz representation kernel.
Sourcepub fn in_unit_ball(&self, f: &[f64], tol: f64) -> bool
pub fn in_unit_ball(&self, f: &[f64], tol: f64) -> bool
Check whether f lies in the unit ball ‖f‖_p <= 1 + tol.
Trait Implementations§
Source§impl Clone for BanachSpace
impl Clone for BanachSpace
Source§fn clone(&self) -> BanachSpace
fn clone(&self) -> BanachSpace
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for BanachSpace
impl RefUnwindSafe for BanachSpace
impl Send for BanachSpace
impl Sync for BanachSpace
impl Unpin for BanachSpace
impl UnsafeUnpin for BanachSpace
impl UnwindSafe for BanachSpace
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§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.