![]() |
Views are a very powerful feature to select a specific row or column of a matrix. The Blaze library currently offers two different views on dense matrices (DenseRow and DenseColumn) and two views on sparse matrices (SparseRow and SparseColumn).
The blaze::DenseRow class template represents a reference to a specific row of a dense matrix primitive. The type of the dense matrix is specified via template parameter:
The blaze::DenseColumn class template represents a reference to a specific column of a dense matrix primitive. The type of the dense matrix is specified via template parameter:
The blaze::SparseRow class template represents a reference to a specific row of a sparse matrix primitive. The type of the sparse matrix is specified via template parameter:
The blaze::SparseColumn template represents a reference to a specific column of a sparse matrix primitive. The type of the sparse matrix is specified via template parameter: