pub struct FredholmMatrixOperator<const P: usize, const Q: usize, const R: usize> { /* private fields */ }Expand description
Wrapper to mark a matrix operator as Fredholm.
Implementations§
Source§impl<const P: usize, const Q: usize, const R: usize> FredholmMatrixOperator<P, Q, R>
impl<const P: usize, const Q: usize, const R: usize> FredholmMatrixOperator<P, Q, R>
Sourcepub fn new(matrix: MatrixOperator<P, Q, R>) -> Result<Self>
pub fn new(matrix: MatrixOperator<P, Q, R>) -> Result<Self>
Create a Fredholm operator from a matrix.
Computes the kernel and cokernel dimensions.
Sourcepub fn matrix(&self) -> &MatrixOperator<P, Q, R>
pub fn matrix(&self) -> &MatrixOperator<P, Q, R>
Get the underlying matrix.
Trait Implementations§
Source§impl<const P: usize, const Q: usize, const R: usize> BoundedOperator<Multivector<P, Q, R>> for FredholmMatrixOperator<P, Q, R>
impl<const P: usize, const Q: usize, const R: usize> BoundedOperator<Multivector<P, Q, R>> for FredholmMatrixOperator<P, Q, R>
Source§fn operator_norm(&self) -> f64
fn operator_norm(&self) -> f64
Compute or estimate the operator norm ||T||.
Source§fn is_bounded_by(&self, bound: f64) -> bool
fn is_bounded_by(&self, bound: f64) -> bool
Check if the operator is bounded by a given constant.
Source§impl<const P: usize, const Q: usize, const R: usize> Clone for FredholmMatrixOperator<P, Q, R>
impl<const P: usize, const Q: usize, const R: usize> Clone for FredholmMatrixOperator<P, Q, R>
Source§fn clone(&self) -> FredholmMatrixOperator<P, Q, R>
fn clone(&self) -> FredholmMatrixOperator<P, Q, R>
Returns a duplicate 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 moreSource§impl<const P: usize, const Q: usize, const R: usize> Debug for FredholmMatrixOperator<P, Q, R>
impl<const P: usize, const Q: usize, const R: usize> Debug for FredholmMatrixOperator<P, Q, R>
Source§impl<const P: usize, const Q: usize, const R: usize> FredholmOperator<Multivector<P, Q, R>> for FredholmMatrixOperator<P, Q, R>
impl<const P: usize, const Q: usize, const R: usize> FredholmOperator<Multivector<P, Q, R>> for FredholmMatrixOperator<P, Q, R>
Source§fn kernel_dimension(&self) -> usize
fn kernel_dimension(&self) -> usize
Compute the dimension of the kernel.
Source§fn cokernel_dimension(&self) -> usize
fn cokernel_dimension(&self) -> usize
Compute the dimension of the cokernel.
Source§fn is_isomorphism(&self) -> bool
fn is_isomorphism(&self) -> bool
Check if the operator is an isomorphism (index 0, trivial kernel).
Source§impl<const P: usize, const Q: usize, const R: usize> LinearOperator<Multivector<P, Q, R>> for FredholmMatrixOperator<P, Q, R>
impl<const P: usize, const Q: usize, const R: usize> LinearOperator<Multivector<P, Q, R>> for FredholmMatrixOperator<P, Q, R>
Source§fn apply(&self, x: &Multivector<P, Q, R>) -> Result<Multivector<P, Q, R>>
fn apply(&self, x: &Multivector<P, Q, R>) -> Result<Multivector<P, Q, R>>
Apply the operator to an element.
Source§fn domain_dimension(&self) -> Option<usize>
fn domain_dimension(&self) -> Option<usize>
Get the domain dimension (None if infinite).
Source§fn codomain_dimension(&self) -> Option<usize>
fn codomain_dimension(&self) -> Option<usize>
Get the codomain dimension (None if infinite).
Auto Trait Implementations§
impl<const P: usize, const Q: usize, const R: usize> Freeze for FredholmMatrixOperator<P, Q, R>
impl<const P: usize, const Q: usize, const R: usize> RefUnwindSafe for FredholmMatrixOperator<P, Q, R>
impl<const P: usize, const Q: usize, const R: usize> Send for FredholmMatrixOperator<P, Q, R>
impl<const P: usize, const Q: usize, const R: usize> Sync for FredholmMatrixOperator<P, Q, R>
impl<const P: usize, const Q: usize, const R: usize> Unpin for FredholmMatrixOperator<P, Q, R>
impl<const P: usize, const Q: usize, const R: usize> UnwindSafe for FredholmMatrixOperator<P, Q, R>
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