BELFEM 0.9.0
Berkeley Lab Finite Element Framework
Loading...
Searching...
No Matches
op_MatrixTimes.hpp File Reference
#include "cl_Vector.hpp"
#include "cl_Matrix.hpp"
Include dependency graph for op_MatrixTimes.hpp:

Go to the source code of this file.

Namespaces

namespace  belfem
 USER GUIDES:

Functions

template<typename T>
auto belfem::operator* (const Matrix< T > &aA, const Matrix< T > &aB) -> decltype(aA.matrix_data() *aB.matrix_data())
template<typename T>
auto belfem::operator* (const Matrix< T > &aA, const Vector< T > &aB) -> decltype(aA.matrix_data() *aB.vector_data())
template<typename A, typename B>
auto belfem::operator* (const Matrix< A > &aA, const B &aB) -> decltype(aA.matrix_data() *aB)
template<typename A, typename B>
auto belfem::operator* (const A &aA, const Matrix< B > &aB) -> decltype(aA *aB.matrix_data())