[][src]Struct friedrich::kernel::HyperTan

pub struct HyperTan {
    pub alpha: f64,
    pub c: f64,
}

The Hyperbolic Tangent Kernel.

ker(x,y) = tanh(αx^Ty + c)

Fields

alpha: f64

The scaling of the inner product.

c: f64

The constant to add to the inner product.

Methods

impl HyperTan[src]

pub fn new(alpha: f64, c: f64) -> HyperTan[src]

Constructs a new Hyperbolic Tangent Kernel.

Trait Implementations

impl Kernel for HyperTan[src]

impl Clone for HyperTan[src]

impl Copy for HyperTan[src]

impl Default for HyperTan[src]

Constructs a default Hyperbolic Tangent Kernel.

The defaults are:

  • alpha = 1
  • c = 0

impl Debug for HyperTan[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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