SharedMeatAxe  1.0
MatRep_t Class Reference

A matrix representation. More...

Detailed Description

A matrix representation.

This data structure is basically a collection of N matrices, representing the generators of the algebra.

A matrix representation is created with MrAlloc(). If the generators are available, they can be passed to MrAlloc(). Generators can also be added to a matrix representation with MrAddGenerator(). In both cases the user can choose if a copy of the matrices or only a reference to the matrices is stored in the representation. In either case, deleting the representation with MrFree() will also delete the generators. For example, after the following code has been executed:

Matrix_t *mat = MatLoad("matrix");
Rep = MrAlloc(1,&mat,0);
MrFree(Rep);

the mat pointer is no longer valid, because the matrix representation has been by MrFree(). However, after

Matrix_t *mat = MatLoad("matrix");
Rep = MrAlloc(1,&mat,MR_COPY_GENERATORS);
MrFree(Rep);

mat is still valid because a copy of the matrix was created.


The documentation for this class was generated from the following file:

SharedMeatAxe 1.0 documentation, generated on Sat Dec 30 2017 12:13:21