#include "cl_Matrix.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 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()) |