name: MatrixDouble : public MMatrix<Double, double>

synopsis:

g++ [flags ...] file ... -l /isip/tools/lib/$ISIP_BINARY/lib_math_matrix.a

#include <MatrixDouble.h>

MatrixDouble(long nrows = DEF_SIZE, long ncols = DEF_SIZE,
           long type = DEF_TYPE);
MatrixDouble(const MatrixDouble& matrix);
quick start:

double data0[6] = {1.2, 2.5, 3.6, 4.8, 5.1, 6.7};
double data1[6] = {4.2, 6.1, 7.0, 2.5, 3.3, 9.5};

MatrixDouble val0;
MatrixDouble val1(3, 3, Integral::LOWER_TRIANGLE);

val0.assign(2, 3, data0);
val1.assign(3, 3, data1, Integral::LOWER_TRIANGLE);
description:

The MatrixDouble class manages a matrix of Double objects. It is derived from the MMatrix class and inherits the commonly-used mathematical, logical, linear algebra and i/o methods from it. A MatrixDouble object can read itself from (or write itself to) a Sof file. It includes the memory management methods which use the MemoryManager class to allocate or delete memory from the heap.

dependencies:

public constants:

error codes:

protected data:

required public methods:

class-specific public methods:

private methods:

examples:

notes: