#include <stdexcept>
#include "DenseLinAlgPack_Types.hpp"
Go to the source code of this file.
|
void | DenseLinAlgPack::identity_perm (IVector *perm) |
|
void | DenseLinAlgPack::inv_perm (const IVector &perm, IVector *inv_perm) |
|
void | DenseLinAlgPack::perm_ele (const IVector &perm, DVectorSlice *vs) |
| Permute a DVectorSlice in place. More...
|
|
void | DenseLinAlgPack::perm_ele (const DVectorSlice &x, const IVector &perm, DVectorSlice *y) |
| Perform y = P*x. More...
|
|
void | DenseLinAlgPack::inv_perm_ele (const DVectorSlice &y, const IVector &perm, DVectorSlice *x) |
| Perform x = P'*y. More...
|
|
void | DenseLinAlgPack::perm_rows (const IVector &row_perm, DMatrixSlice *gms) |
| Permute a GenMatrixSlices rows. More...
|
|
void | DenseLinAlgPack::perm_cols (const IVector &col_perm, DMatrixSlice *gms) |
| Permute a GenMatrixSlices columns. More...
|
|
void | DenseLinAlgPack::perm_rows_cols (const IVector &row_perm, const IVector &col_perm, DMatrixSlice *gms) |
| Permute a GenMatrixSlices rows and columns. More...
|
|