Struct opensrdk_probability::nonparametric::elliptical_process::exact::ExactEllipticalProcessParams
source · pub struct ExactEllipticalProcessParams<K, T>where
K: PositiveDefiniteKernel<T>,
T: RandomVariable,{ /* private fields */ }Trait Implementations
sourceimpl<K: Clone, T: Clone> Clone for ExactEllipticalProcessParams<K, T>where
K: PositiveDefiniteKernel<T>,
T: RandomVariable,
impl<K: Clone, T: Clone> Clone for ExactEllipticalProcessParams<K, T>where
K: PositiveDefiniteKernel<T>,
T: RandomVariable,
sourcefn clone(&self) -> ExactEllipticalProcessParams<K, T>
fn clone(&self) -> ExactEllipticalProcessParams<K, T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl<K: Debug, T: Debug> Debug for ExactEllipticalProcessParams<K, T>where
K: PositiveDefiniteKernel<T>,
T: RandomVariable,
impl<K: Debug, T: Debug> Debug for ExactEllipticalProcessParams<K, T>where
K: PositiveDefiniteKernel<T>,
T: RandomVariable,
sourceimpl<K, T> EllipticalParams for ExactEllipticalProcessParams<K, T>where
K: PositiveDefiniteKernel<T>,
T: RandomVariable,
impl<K, T> EllipticalParams for ExactEllipticalProcessParams<K, T>where
K: PositiveDefiniteKernel<T>,
T: RandomVariable,
sourceimpl<K, T> EllipticalProcessParams<K, T> for ExactEllipticalProcessParams<K, T>where
K: PositiveDefiniteKernel<T>,
T: RandomVariable,
impl<K, T> EllipticalProcessParams<K, T> for ExactEllipticalProcessParams<K, T>where
K: PositiveDefiniteKernel<T>,
T: RandomVariable,
fn mahalanobis_squared(&self) -> f64
sourceimpl<K, T> GaussianProcessRegressor<K, T> for ExactEllipticalProcessParams<K, T>where
K: PositiveDefiniteKernel<T>,
T: RandomVariable,
impl<K, T> GaussianProcessRegressor<K, T> for ExactEllipticalProcessParams<K, T>where
K: PositiveDefiniteKernel<T>,
T: RandomVariable,
fn gp_predict_multivariate(
&self,
xs: &[T]
) -> Result<ExactEllipticalParams, DistributionError>
fn gp_predict(&self, xs: &T) -> Result<NormalParams, DistributionError>
sourceimpl<K, T> RandomVariable for ExactEllipticalProcessParams<K, T>where
K: PositiveDefiniteKernel<T>,
T: RandomVariable,
impl<K, T> RandomVariable for ExactEllipticalProcessParams<K, T>where
K: PositiveDefiniteKernel<T>,
T: RandomVariable,
type RestoreInfo = ()
fn transform_vec(&self) -> (Vec<f64>, Self::RestoreInfo)
fn len(&self) -> usize
fn restore(
v: &[f64],
info: &Self::RestoreInfo
) -> Result<Self, DistributionError>
Auto Trait Implementations
impl<K, T> RefUnwindSafe for ExactEllipticalProcessParams<K, T>where
K: RefUnwindSafe,
T: RefUnwindSafe,
impl<K, T> Send for ExactEllipticalProcessParams<K, T>
impl<K, T> Sync for ExactEllipticalProcessParams<K, T>
impl<K, T> Unpin for ExactEllipticalProcessParams<K, T>where
K: Unpin,
T: Unpin,
impl<K, T> UnwindSafe for ExactEllipticalProcessParams<K, T>where
K: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more