pub trait InnerProductSpace: LinearSpace {
// Required method
fn inner_product(&self, x: &Self::E, other: &Self::E) -> Self::F;
}
Expand description
Inner product space
Required Methods§
Sourcefn inner_product(&self, x: &Self::E, other: &Self::E) -> Self::F
fn inner_product(&self, x: &Self::E, other: &Self::E) -> Self::F
Inner product
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.