#include <MatrixFunctions.hh>
|
template<class MatrixA , class MatrixB > |
static MatrixA::value_type | f (const MatrixA &lhs, const MatrixB &rhs, const unsigned int offset) |
|
◆ f()
template<unsigned int I>
template<class MatrixA , class MatrixB >
static MatrixA::value_type meta_matrix_dot< I >::f |
( |
const MatrixA & |
lhs, |
|
|
const MatrixB & |
rhs, |
|
|
const unsigned int |
offset |
|
) |
| |
|
inlinestatic |
242 {
243 return lhs.apply(offset/MatrixB::cols*MatrixA::cols + I) *
244 rhs.apply(MatrixB::cols*I + offset%MatrixB::cols) +
246 }
The documentation for this struct was generated from the following file: