Graphite Version 3
An experimental 3D geometry processing program
|
A compact self-contained storage for sparse matrices. More...
#include <geogram/NL/nl_matrix.h>
Public Attributes | |
NLuint | m |
number of rows | |
NLuint | n |
number of columns | |
NLenum | type |
Matrix type. | |
NLDestroyMatrixFunc | destroy_func |
destructor | |
NLMultMatrixVectorFunc | mult_func |
Matrix x vector product. | |
NLdouble * | val |
array of coefficient values, size = NNZ (number of non-zero coefficients) | |
NLuint_big * | rowptr |
row pointers, size = m+1 | |
NLuint * | colind |
column indices, size = NNZ | |
NLuint | nslices |
number of slices, used by parallel spMv | |
NLuint * | sliceptr |
slice pointers, size = nslices + 1, used by parallel spMv | |
NLboolean | symmetric_storage |
NL_TRUE if symmetric storage is used, NL_FALSE otherwise. | |
Related Symbols | |
(Note that these are not member symbols.) | |
NLAPI void NLAPIENTRY | nlCRSMatrixConstruct (NLCRSMatrix *M, NLuint m, NLuint n, NLuint_big nnz, NLuint nslices) |
Constructs a new NLCRSMatrix. | |
NLAPI void NLAPIENTRY | nlCRSMatrixConstructSymmetric (NLCRSMatrix *M, NLuint n, NLuint_big nnz) |
Constructs a new NLCRSMatrix with symmetric storage. | |
NLAPI void NLAPIENTRY | nlCRSMatrixConstructPattern (NLCRSMatrix *M, NLuint m, NLuint n) |
Constructs a new NLCRSMatrix with only the pattern. | |
NLAPI void NLAPIENTRY | nlCRSMatrixConstructPatternSymmetric (NLCRSMatrix *M, NLuint n) |
Constructs a new NLCRSMatrix with symmetric storage. | |
NLAPI NLboolean NLAPIENTRY | nlCRSMatrixLoad (NLCRSMatrix *M, const char *filename) |
Loads a NLCRSMatrix from a file. | |
NLAPI NLboolean NLAPIENTRY | nlCRSMatrixSave (NLCRSMatrix *M, const char *filename) |
Saves a NLCRSMatrix into a file. | |
NLAPI NLuint_big NLAPIENTRY | nlCRSMatrixNNZ (NLCRSMatrix *M) |
Gets the number of non-zero coefficient in an NLCRSMatrix. | |
NLAPI NLMatrix NLAPIENTRY | nlCRSMatrixNewFromSparseMatrix (NLSparseMatrix *M) |
Creates a compressed row storage matrix from a dynamic sparse matrix. | |
NLAPI NLMatrix NLAPIENTRY | nlCRSMatrixNewFromSparseMatrixSymmetric (NLSparseMatrix *M) |
Creates a compressed row storage matrix from a dynamic sparse matrix. | |
A compact self-contained storage for sparse matrices.
Unlike with NLSparseMatrix, it is not possible to add new coefficients in an NLCRSMatrix.
Definition at line 278 of file nl_matrix.h.
|
related |
Constructs a new NLCRSMatrix.
[in,out] | M | pointer to an uninitialized NLCRSMatrix |
[in] | m | number of rows |
[in] | n | number of columns |
[in] | nnz | number of non-zero coefficientsz |
[in] | nslices | number of slices, used by parallel spMv (typically, nslices = number of cores) |
|
related |
Constructs a new NLCRSMatrix with only the pattern.
This function should be used when the number of coefficients in each row is not known in advance.
[in,out] | M | pointer to an uninitialized NLCRSMatrix |
[in] | m | number of rows |
[in] | n | number of columns |
|
related |
Constructs a new NLCRSMatrix with symmetric storage.
This function should be used when the number of coefficients in each row is not known in advance.
[in,out] | M | pointer to an uninitialized NLCRSMatrix |
[in] | n | number of rows and columns |
[in] | nnz | number of non-zero coefficients |
|
related |
Constructs a new NLCRSMatrix with symmetric storage.
[in,out] | M | pointer to an uninitialized NLCRSMatrix |
[in] | n | number of rows and columns |
[in] | nnz | number of non-zero coefficients |
|
related |
Loads a NLCRSMatrix from a file.
[out] | M | a pointer to an uninitialized NLCRSMatriix |
[in] | filename | the name of the file |
NL_TRUE | on success |
NL_FALSE | on error |
|
related |
Creates a compressed row storage matrix from a dynamic sparse matrix.
The matrix M
should have stored rows. If M
has symmetric storage, then the constructed matrix also has symmetric storage.
[in] | M | the dynamic sparse matrix. |
|
related |
Creates a compressed row storage matrix from a dynamic sparse matrix.
The matrix M
should have stored rows. It is supposed to be symmetric. If it does not have symmetric storage, then its upper triangular part is ignored.
[in] | M | the dynamic sparse matrix. |
|
related |
Gets the number of non-zero coefficient in an NLCRSMatrix.
[in] | M | a pointer to the NLCRSMatrix |
M
|
related |
Saves a NLCRSMatrix into a file.
[in] | M | a pointer to the NLCRSMatriix |
[in] | filename | the name of the file |
NL_TRUE | on success |
NL_FALSE | on error |
NLuint* NLCRSMatrix::colind |
column indices, size = NNZ
Definition at line 320 of file nl_matrix.h.
NLDestroyMatrixFunc NLCRSMatrix::destroy_func |
destructor
Definition at line 299 of file nl_matrix.h.
NLuint NLCRSMatrix::m |
number of rows
Definition at line 282 of file nl_matrix.h.
NLMultMatrixVectorFunc NLCRSMatrix::mult_func |
Matrix x vector product.
Definition at line 304 of file nl_matrix.h.
NLuint NLCRSMatrix::n |
number of columns
Definition at line 287 of file nl_matrix.h.
NLuint NLCRSMatrix::nslices |
number of slices, used by parallel spMv
Definition at line 325 of file nl_matrix.h.
NLuint_big* NLCRSMatrix::rowptr |
row pointers, size = m+1
Definition at line 315 of file nl_matrix.h.
NLuint* NLCRSMatrix::sliceptr |
slice pointers, size = nslices + 1, used by parallel spMv
Definition at line 331 of file nl_matrix.h.
NLboolean NLCRSMatrix::symmetric_storage |
NL_TRUE if symmetric storage is used, NL_FALSE otherwise.
Definition at line 337 of file nl_matrix.h.
NLenum NLCRSMatrix::type |
Matrix type.
One of NL_MATRIX_DYNAMIC, NL_MATRIX_CRS, NL_MATRIX_SUPERLU_EXT, NL_CHOLDMOD_MATRIX_EXT
Definition at line 294 of file nl_matrix.h.
NLdouble* NLCRSMatrix::val |
array of coefficient values, size = NNZ (number of non-zero coefficients)
Definition at line 310 of file nl_matrix.h.