Struct opensrdk_probability::nonparametric::gaussian_process::GaussianProcessParams[][src]

pub struct GaussianProcessParams<T> where
    T: RandomVariable
{ /* fields omitted */ }

Implementations

impl<T> GaussianProcessParams<T> where
    T: RandomVariable
[src]

pub fn new(x: Vec<T>, theta: Vec<f64>) -> Self[src]

pub fn eject(self) -> (Vec<T>, Vec<f64>)[src]

Trait Implementations

impl<T: Clone> Clone for GaussianProcessParams<T> where
    T: RandomVariable
[src]

impl<T: Debug> Debug for GaussianProcessParams<T> where
    T: RandomVariable
[src]

impl<T: PartialEq> PartialEq<GaussianProcessParams<T>> for GaussianProcessParams<T> where
    T: RandomVariable
[src]

impl<T> StructuralPartialEq for GaussianProcessParams<T> where
    T: RandomVariable
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for GaussianProcessParams<T> where
    T: RefUnwindSafe

impl<T> Send for GaussianProcessParams<T> where
    T: Send

impl<T> Sync for GaussianProcessParams<T> where
    T: Sync

impl<T> Unpin for GaussianProcessParams<T> where
    T: Unpin

impl<T> UnwindSafe for GaussianProcessParams<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> RandomVariable for T where
    T: Clone + Debug + PartialEq<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,