pub trait SVM_Kernel: AlgorithmTrait + SVM_KernelConst {
    fn as_raw_mut_SVM_Kernel(&mut self) -> *mut c_void;

    fn calc(
        &mut self,
        vcount: i32,
        n: i32,
        vecs: &f32,
        another: &f32,
        results: &mut f32
    ) -> Result<()> { ... } }

Required Methods

Provided Methods

Implementors