#include <matrixFI.h>
Inheritance diagram for MatrixFI:
Public Methods | |
constructors and destructor | |
MatrixFI () | |
default constructor. | |
MatrixFI (const int nr, const int nc=1, const int value=0) | |
standard constructor. | |
MatrixFI (const MatrixC<int>& B) | |
copy constructor. | |
virtual | ~MatrixFI () |
virtual destructor. | |
MatrixFI& | operator= (const int value) |
assignment with a constant value. | |
copy of rows and columns | |
VectorI | column (const int j) const |
create VectorD from column of this Matrix. | |
VectorI | row (const int i) const |
create VectorD from row of this Matrix. |
Only constructors and assignment operators have to be defined.
|
default constructor.
|
|
standard constructor.
|
|
copy constructor.
|
|
virtual destructor.
|
|
assignment with a constant value.
|
|
create VectorD from column of this Matrix.
|
|
create VectorD from row of this Matrix.
|