A Hankel matrix class.
More...
#include <hankel_matrix.hpp>
Public Member Functions |
| hankel_matrix () |
| The default constructor. Does not allocate any memory.
|
| hankel_matrix (std::size_t rows, std::size_t cols) |
| Creates the matrix with the given size.
|
void | resize (size_t sz, bool preserve=true) |
| Resizes the matrix. Existing entries can be preserved.
|
viennacl::ocl::handle< cl_mem > | handle () const |
| Returns the OpenCL handle.
|
toeplitz_matrix< SCALARTYPE,
ALIGNMENT > & | elements () |
| Returns an internal viennacl::toeplitz_matrix, which represents a Hankel matrix elements.
|
toeplitz_matrix< SCALARTYPE,
ALIGNMENT > const & | elements () const |
std::size_t | size1 () const |
| Returns the number of rows of the matrix.
|
std::size_t | size2 () const |
| Returns the number of columns of the matrix.
|
std::size_t | internal_size () const |
| Returns the internal size of matrix representtion. Usually required for launching OpenCL kernels only.
|
entry_proxy< SCALARTYPE > | operator() (unsigned int row_index, unsigned int col_index) |
| Read-write access to a element of the matrix.
|
hankel_matrix< SCALARTYPE,
ALIGNMENT > & | operator+= (hankel_matrix< SCALARTYPE, ALIGNMENT > &that) |
| += operation for Hankel matrices
|
Detailed Description
template<class SCALARTYPE, unsigned int ALIGNMENT>
class viennacl::hankel_matrix< SCALARTYPE, ALIGNMENT >
A Hankel matrix class.
- Template Parameters:
-
| SCALARTYPE | The underlying scalar type (either float or double) |
| ALIGNMENT | The internal memory size is given by (size()/ALIGNMENT + 1) * ALIGNMENT. ALIGNMENT must be a power of two. Best values or usually 4, 8 or 16, higher values are usually a waste of memory. |
Constructor & Destructor Documentation
The default constructor. Does not allocate any memory.
hankel_matrix |
( |
std::size_t |
rows, |
|
|
std::size_t |
cols | |
|
) |
| | [inline, explicit] |
Creates the matrix with the given size.
- Parameters:
-
| rows | Number of rows of the matrix |
| cols | Number of columns of the matrix |
Member Function Documentation
Returns the OpenCL handle.
- Returns:
- OpenCL handle
std::size_t internal_size |
( |
|
) |
const [inline] |
Returns the internal size of matrix representtion. Usually required for launching OpenCL kernels only.
- Returns:
- Internal size of matrix representation
entry_proxy<SCALARTYPE> operator() |
( |
unsigned int |
row_index, |
|
|
unsigned int |
col_index | |
|
) |
| | [inline] |
Read-write access to a element of the matrix.
- Parameters:
-
| row_index | Row index of accessed element |
| col_index | Column index of accessed element |
- Returns:
- Proxy for matrix entry
+= operation for Hankel matrices
- Parameters:
-
| that | Matrix which will be added |
- Returns:
- Result of addition
void resize |
( |
size_t |
sz, |
|
|
bool |
preserve = true | |
|
) |
| | [inline] |
Resizes the matrix. Existing entries can be preserved.
- Parameters:
-
| sz | New size of matrix |
| preserve | If true, existing values are preserved. |
std::size_t size1 |
( |
|
) |
const [inline] |
Returns the number of rows of the matrix.
std::size_t size2 |
( |
|
) |
const [inline] |
Returns the number of columns of the matrix.
The documentation for this class was generated from the following file: