Struct opensrdk_probability::nonparametric::generalized_kernel_density_estimation::GeneralizedKernelDensityEstimation
source · pub struct GeneralizedKernelDensityEstimation<S, A, K>where
S: RandomVariable,
A: RandomVariable,
K: PositiveDefiniteKernel<Vec<f64>>,{
pub history: Vec<(S, A)>,
pub kernel: K,
pub kernel_params: Vec<f64>,
}Fields§
§history: Vec<(S, A)>§kernel: K§kernel_params: Vec<f64>Implementations§
source§impl<S, A, K> GeneralizedKernelDensityEstimation<S, A, K>where
S: RandomVariable,
A: RandomVariable,
K: PositiveDefiniteKernel<Vec<f64>>,
impl<S, A, K> GeneralizedKernelDensityEstimation<S, A, K>where
S: RandomVariable,
A: RandomVariable,
K: PositiveDefiniteKernel<Vec<f64>>,
Trait Implementations§
source§impl<S, A, K> Clone for GeneralizedKernelDensityEstimation<S, A, K>where
S: RandomVariable + Clone,
A: RandomVariable + Clone,
K: PositiveDefiniteKernel<Vec<f64>> + Clone,
impl<S, A, K> Clone for GeneralizedKernelDensityEstimation<S, A, K>where
S: RandomVariable + Clone,
A: RandomVariable + Clone,
K: PositiveDefiniteKernel<Vec<f64>> + Clone,
source§fn clone(&self) -> GeneralizedKernelDensityEstimation<S, A, K>
fn clone(&self) -> GeneralizedKernelDensityEstimation<S, A, K>
Returns a copy 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 more