#include <IntBLAS.h>
Inheritance diagram for intblas::IntervalMatrixT< r, c >:

Public Member Functions | |
| IntervalMatrixT (const IntervalMatrix &m) | |
| IntervalMatrixT (const IntervalMatrixT &m) | |
| void | operator= (IntervalMatrix &b) |
| This constructs a matrix with r rows and c columns. | |
This also allows you to typedef matrices you commonly use. For example, say you use a lot of 2x2 matrices. For every declaration you could:
IntervalMatrix m(2, 2), n(2, 2), o(2, 2);
typedef IntervalMatrixT<2,2> IMatrix2x2;
. . .
IMatrix2x2 m, n, o;
Further this class also adds strong type checking during assignemnt. This means that you cannot assign a 3x3 matrix to a 2x2 matrix. This is legal if you used the IntervalMatrix class.
|
||||||||||
|
This constructs a matrix with r rows and c columns. inline IntervalMatrixT() : IntervalMatrix( r, c ){} /**Copies the values of the matrix b into this matrix, with strong type checking. This operation can be expensive. This is especially the case if this matrix is not empty or b has a different size.
|
1.4.4