1 #ifndef doublematrixptrvector_h
2 #define doublematrixptrvector_h
This class implements a dynamic vector of DoubleMatrix values.
Definition: doublematrixptrvector.h:10
int size
This is the size of the vector.
Definition: doublematrixptrvector.h:73
void resizeBlank(int addsize)
This will add new blank (ie. NULL) entries to the vector.
Definition: doublematrixptrvector.cc:45
int Size() const
This will return the size of the vector.
Definition: doublematrixptrvector.h:52
~DoubleMatrixPtrVector()
This is the DoubleMatrixPtrVector destructor.
Definition: doublematrixptrvector.cc:23
DoubleMatrix *& operator[](int pos)
This will return the value of an element of the vector.
Definition: doublematrixptrvector.h:58
void resize(DoubleMatrix *value)
This will add one new entry to the vector.
Definition: doublematrixptrvector.cc:30
DoubleMatrixPtrVector()
This is the default DoubleMatrixPtrVector constructor.
Definition: doublematrixptrvector.h:15
void Delete(int pos)
This will delete an entry from the vector.
Definition: doublematrixptrvector.cc:62
DoubleMatrix ** v
This is the vector of DoubleMatrix values.
Definition: doublematrixptrvector.h:64
This class implements a dynamic vector of DoubleVector values.
Definition: doublematrix.h:11