#include <GenMatrix.h>
Public Member Functions | |
GenMatrix (int noX, int noY) | |
GenMatrix (const GenMatrix &G) | |
void | init (const GenMatrix &G) |
void | swap (GenMatrix &mat) |
void | operator+= (GenMatrix &mat) |
Type | norm_2 () const |
void | operator+= (double offset) |
void | resize (int noX, int noY) |
void | reserve (int rX, int rY) |
void | clear () |
int | noX () const |
int | noY () const |
void | capacity (int &rX, int &rY) const |
const Type & | operator() (int ii, int jj) const |
Type & | operator() (int ii, int jj) |
void | fill (Type val) |
void | print () const |
void | printBitmap () const |
GenMatrix - Matrix for storing B-spline coefficients in Multilevel B-spline approximation. The indices goes from -1. The class has reserve (and capasity) functionality similar to std::vector.