pub struct HardySpace {
pub p: f64,
pub is_real_variable: bool,
}Expand description
Real-variable Hardy space Hᵖ.
Fields§
§p: f64The integrability exponent p (0 < p ≤ ∞).
is_real_variable: boolWhether this is the real-variable (not holomorphic) Hardy space.
Implementations§
Source§impl HardySpace
impl HardySpace
Sourcepub fn atomic_decomposition(&self) -> bool
pub fn atomic_decomposition(&self) -> bool
Atomic decomposition of H¹: every f ∈ H¹ is a sum of atoms.
Sourcepub fn duality_with_bmo(&self) -> bool
pub fn duality_with_bmo(&self) -> bool
Duality: (H¹)* = BMO (Fefferman-Stein).
Auto Trait Implementations§
impl Freeze for HardySpace
impl RefUnwindSafe for HardySpace
impl Send for HardySpace
impl Sync for HardySpace
impl Unpin for HardySpace
impl UnsafeUnpin for HardySpace
impl UnwindSafe for HardySpace
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