Go to the source code of this file.
|
virtual T | compute (SGVector< T > vector1, SGVector< T > vector2) const |
| Template class for Eigen3 dot product that performs dot product operation( \(\sum_{i=1}^d a_ib_i$ where $a,b$ are $d$-dimensional vectors) using Eigen3 Library */ template <class T> class DenseEigen3DotProduct : public VectorDotProduct<T, SGVector<T> > { public: /** Constructor */ DenseEigen3DotProduct() : VectorDotProduct<T, SGVector<T> >() { } /** Compute method which performs dot product operation (\){i=1}^d a_ib_i$ where $a,b$ are $d$-dimensional vectors) More...
|
|
virtual | ~DenseEigen3DotProduct () |
|