|  | 
| static void | set (ScalarType s, VectorType *result) | 
|  | Sets entire element of given vector resultwith scalars.  More...
 | 
|  | 
| static void | set (const VectorType &v, VectorType *result) | 
|  | Copies entire element of given vector resultwith other vectorv.  More...
 | 
|  | 
| static void | set (ScalarType s, MatrixType *result) | 
|  | Sets entire element of given matrix resultwith scalars.  More...
 | 
|  | 
| static void | set (const MatrixType &m, MatrixType *result) | 
|  | Copies entire element of given matrix resultwith other matrixv.  More...
 | 
|  | 
| static double | dot (const VectorType &a, const VectorType &b) | 
|  | Performs dot product with vector aandb.  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 2-D finite differencing.