Go to the documentation of this file.
24 #ifndef __MLPACK_CORE_KERNELS_LINEAR_KERNEL_HPP
25 #define __MLPACK_CORE_KERNELS_LINEAR_KERNEL_HPP
60 template<
typename VecType>
61 static double Evaluate(
const VecType& a,
const VecType& b)
63 return arma::dot(a, b);