Home
last modified time | relevance | path

Searched refs:Kde (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/criterion/src/stats/univariate/kde/
Dmod.rs11 pub struct Kde<'a, A, K> struct
21 impl<'a, A, K> Kde<'a, A, K> argument
28 pub fn new(sample: &'a Sample<A>, kernel: K, bw: Bandwidth) -> Kde<'a, A, K> { in new()
29 Kde { in new()
96 use crate::stats::univariate::kde::{Bandwidth, Kde};
107 let kde = Kde::new(data, Gaussian, Bandwidth::Silverman);
/external/rust/crates/criterion/src/
Dkde.rs2 use crate::stats::univariate::kde::{Bandwidth, Kde};
23 let kde = Kde::new(sample, Gaussian, Bandwidth::Silverman); in sweep_and_estimate()