[][src]Struct cmsis_dsp_sys_pregenerated::arm_svm_polynomial_instance_f32

#[repr(C)]pub struct arm_svm_polynomial_instance_f32 {
    pub nbOfSupportVectors: u32,
    pub vectorDimension: u32,
    pub intercept: float32_t,
    pub dualCoefficients: *const float32_t,
    pub supportVectors: *const float32_t,
    pub classes: *const i32,
    pub degree: i32,
    pub coef0: float32_t,
    pub gamma: float32_t,
}

@brief Instance structure for polynomial SVM prediction function.

Fields

nbOfSupportVectors: u32

< Number of support vectors

vectorDimension: u32

< Dimension of vector space

intercept: float32_t

< Intercept

dualCoefficients: *const float32_t

< Dual coefficients

supportVectors: *const float32_t

< Support vectors

classes: *const i32

< The two SVM classes

degree: i32

< Polynomial degree

coef0: float32_t

< Polynomial constant

gamma: float32_t

< Gamma factor

Auto Trait Implementations

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, 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.