#include "CTBtraits.hxx"
#include "CTBnum.hxx"
#include "CTBexceptionIndexRange.hxx"
#include "CTBexceptionConformity.hxx"
Include dependency graph for CTBdot.icc:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Functions | |
template<class T> T | CTBdot (const CTBvector< T > &v1, const CTBvector< T > &v2) |
template<class T> T | CTBdot (const CTBvector< T > &v1, const CTBvector< T > &v2, CTBint i_beg, CTBint i_end) |
template<class T> T | CTBdot (const CTBmatrix< T > &m, CTBint i_row, const CTBvector< T > &v) |
template<class T> T | CTBdot (const CTBmatrix< T > &m, CTBint i_row, const CTBvector< T > &v, CTBint i_beg, CTBint i_end) |
template<class T> T | CTBdot (CTBint i_col, const CTBmatrix< T > &m, const CTBvector< T > &v) |
template<class T> T | CTBdot (CTBint i_col, const CTBmatrix< T > &m, const CTBvector< T > &v, CTBint i_beg, CTBint i_end) |
template<class T> T | CTBdot (const CTBmatrix< T > &m1, CTBint i_row, CTBint i_col, const CTBmatrix< T > &m2) |
template<class T> T | CTBdot (const CTBmatrix< T > &m1, CTBint i_row, CTBint i_col, const CTBmatrix< T > &m2, CTBint i_beg, CTBint i_end) |
Definition in file CTBdot.icc.
|
Returns dot product of two vectors v1 and v2.
Definition at line 29 of file CTBdot.icc. |
|
Returns dot product of the subrange (i_beg, i_end) of two vectors v1 and v2 . A zero is returned if i_end < i_beg .
Definition at line 58 of file CTBdot.icc. |
|
Returns dot product of the row i_row of matrix m with vector v .
Definition at line 88 of file CTBdot.icc. |
|
Returns dot product of the subrange (i_beg, i_end) of the row i_row of matrix m with vector v . A zero is returned if i_end < i_beg .
Definition at line 117 of file CTBdot.icc. |
|
Returns dot product of the column i_col of matrix m with vector v .
Definition at line 147 of file CTBdot.icc. |
|
Returns dot product of the subrange (i_beg, i_end) of the column i_col of matrix m with vector v . A zero is returned if i_end < i_beg .
Definition at line 182 of file CTBdot.icc. |
|
Returns dot product of the row i_row of matrix m1 with the column i_col of matrix m2
Definition at line 219 of file CTBdot.icc. |
|
Returns dot product of the subrange (i_beg, i_end) of the row i_row of matrix m1 with the column i_col of matrix m2 . A zero is returned if i_end < i_beg .
Definition at line 255 of file CTBdot.icc. |