Go to the source code of this file.
|
| template<typename ExprL , typename ExprR > |
| auto | Feel::vf::ddot (ExprL l, ExprR r) -> decltype(trace(trans(l)*r)) |
| |
| template<typename ExprL , typename ExprR > |
| auto | Feel::vf::inner_prod (ExprL l, ExprR r) -> decltype(trace(trans(l)*r)) |
| |
| template<typename ExprT > |
| auto | Feel::vf::norm2 (ExprT v) -> decltype(sqrt(inner_prod(v, v))) |
| |
| template<typename ExprL , typename ExprR > |
| auto | Feel::vf::outer_prod (ExprL l, ExprR r) -> decltype(l *trans(r)) |
| |