pub struct Exponential {
pub variance: f64,
pub lengthscales: Vec<f64>,
}Expand description
Exponential kernel.
Fields§
§variance: f64§lengthscales: Vec<f64>Implementations§
Source§impl Exponential
impl Exponential
Trait Implementations§
Source§impl Clone for Exponential
impl Clone for Exponential
Source§fn clone(&self) -> Exponential
fn clone(&self) -> Exponential
Returns a duplicate 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 moreSource§impl Debug for Exponential
impl Debug for Exponential
Source§impl Default for Exponential
impl Default for Exponential
Source§fn default() -> Exponential
fn default() -> Exponential
Returns the “default value” for a type. Read more
Source§impl PartialEq for Exponential
impl PartialEq for Exponential
impl StructuralPartialEq for Exponential
Auto Trait Implementations§
impl Freeze for Exponential
impl RefUnwindSafe for Exponential
impl Send for Exponential
impl Sync for Exponential
impl Unpin for Exponential
impl UnsafeUnpin for Exponential
impl UnwindSafe for Exponential
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more