![]() |
Modules | |
DenseColumn | |
DenseRow | |
SparseColumn | |
SparseRow | |
Functions | |
template<typename MT , bool SO> | |
DenseColumn< MT > | blaze::column (DenseMatrix< MT, SO > &dm, size_t index) |
Creating a view on a specific column of the given dense matrix. More... | |
template<typename MT , bool SO> | |
DenseColumn< const MT > | blaze::column (const DenseMatrix< MT, SO > &dm, size_t index) |
Creating a view on a specific column of the given constant dense matrix. More... | |
template<typename MT , bool SO> | |
DenseRow< MT > | blaze::row (DenseMatrix< MT, SO > &dm, size_t index) |
Creating a view on a specific row of the given dense matrix. More... | |
template<typename MT , bool SO> | |
DenseRow< const MT > | blaze::row (const DenseMatrix< MT, SO > &dm, size_t index) |
Creating a view on a specific row of the given constant dense matrix. More... | |
template<typename MT , bool SO> | |
SparseColumn< MT > | blaze::column (SparseMatrix< MT, SO > &sm, size_t index) |
Creating a view on a specific column of the given sparse matrix. More... | |
template<typename MT , bool SO> | |
SparseColumn< const MT > | blaze::column (const SparseMatrix< MT, SO > &sm, size_t index) |
Creating a view on a specific column of the given constant sparse matrix. More... | |
template<typename MT , bool SO> | |
SparseRow< MT > | blaze::row (SparseMatrix< MT, SO > &sm, size_t index) |
Creating a view on a specific row of the given sparse matrix. More... | |
template<typename MT , bool SO> | |
SparseRow< const MT > | blaze::row (const SparseMatrix< MT, SO > &sm, size_t index) |
Creating a view on a specific row of the given constant sparse matrix. More... | |
|
inline |
Creating a view on a specific column of the given dense matrix.
dm | The dense matrix containing the column. |
index | The index of the column. |
std::invalid_argument | Invalid column access index. |
This function returns an expression representing the specified column of the given dense matrix.
|
inline |
Creating a view on a specific column of the given constant dense matrix.
dm | The constant dense matrix containing the column. |
index | The index of the column. |
std::invalid_argument | Invalid column access index. |
This function returns an expression representing the specified column of the given dense matrix.
|
inline |
Creating a view on a specific column of the given sparse matrix.
sm | The sparse matrix containing the column. |
index | The index of the column. |
std::invalid_argument | Invalid column access index. |
This function returns an expression representing the specified column of the given sparse matrix.
|
inline |
Creating a view on a specific column of the given constant sparse matrix.
sm | The constant sparse matrix containing the column. |
index | The index of the column. |
std::invalid_argument | Invalid column access index. |
This function returns an expression representing the specified column of the given sparse matrix.
|
inline |
Creating a view on a specific row of the given dense matrix.
dm | The dense matrix containing the row. |
index | The index of the row. |
std::invalid_argument | Invalid row access index. |
This function returns an expression representing the specified row of the given dense matrix.
|
inline |
Creating a view on a specific row of the given constant dense matrix.
dm | The constant dense matrix containing the row. |
index | The index of the row. |
std::invalid_argument | Invalid row access index. |
This function returns an expression representing the specified row of the given dense matrix.
|
inline |
Creating a view on a specific row of the given sparse matrix.
sm | The sparse matrix containing the row. |
index | The index of the row. |
std::invalid_argument | Invalid row access index. |
This function returns an expression representing the specified row of the given sparse matrix.
|
inline |
Creating a view on a specific row of the given constant sparse matrix.
sm | The constant sparse matrix containing the row. |
index | The index of the row. |
std::invalid_argument | Invalid row access index. |
This function returns an expression representing the specified row of the given sparse matrix.