|
| static void | set (ScalarType s, VectorType *result) |
| | Sets entire element of given vector result with scalar s. More...
|
| |
| static void | set (const VectorType &v, VectorType *result) |
| | Copies entire element of given vector result with other vector v. More...
|
| |
| static void | set (ScalarType s, MatrixType *result) |
| | Sets entire element of given matrix result with scalar s. More...
|
| |
| static void | set (const MatrixType &m, MatrixType *result) |
| | Copies entire element of given matrix result with other matrix v. More...
|
| |
| static double | dot (const VectorType &a, const VectorType &b) |
| | Performs dot product with vector a and b. More...
|
| |
| static void | axpy (double a, const VectorType &x, const VectorType &y, VectorType *result) |
| |
| static void | mvm (const MatrixType &m, const VectorType &v, VectorType *result) |
| | Performs matrix-vector multiplication. More...
|
| |
| static void | residual (const MatrixType &a, const VectorType &x, const VectorType &b, VectorType *result) |
| | Computes residual vector (b - ax). More...
|
| |
| static ScalarType | l2Norm (const VectorType &v) |
| | Returns L2-norm of the given vector v. More...
|
| |
| static ScalarType | lInfNorm (const VectorType &v) |
| | Returns Linf-norm of the given vector v. More...
|
| |
BLAS operator wrapper for compressed 2-D finite differencing.