BioInt
1.02.00
BioInt: An integrative biological object-oriented application framework and interpreter
|
#include <BioMatrix.h>
Public Member Functions | |
BioMatrix () | |
~BioMatrix () | |
BioMatrix (int rows, int cols) | |
BioMatrix (const BioMatrix &rhs) | |
BioMatrix & | operator= (const BioMatrix &) |
float * | operator[] (int row) const |
int | getNumberOfRows () const |
int | getNumberOfColumns () const |
void | setRowsAndColumns (int rows, int cols) |
BioMatrix | getTransposedMatrix () |
void | showMatrix (ostream &=cout) |
void | setIdentity () |
void | setValue (int row, int col, float val) |
Friends | |
bool | operator> (const BioMatrix &, const BioMatrix &) |
bool | operator< (const BioMatrix &, const BioMatrix &) |
bool | operator== (const BioMatrix &, const BioMatrix &) |
BioMatrix | operator* (const BioMatrix &, const BioMatrix &) |
BioMatrix::BioMatrix | ( | int | rows, |
int | cols | ||
) |
BioMatrix::BioMatrix | ( | const BioMatrix & | rhs | ) |
int BioMatrix::getNumberOfColumns | ( | ) | const |
int BioMatrix::getNumberOfRows | ( | ) | const |
float* BioMatrix::operator[] | ( | int | row | ) | const |
void BioMatrix::setIdentity | ( | ) |
void BioMatrix::setRowsAndColumns | ( | int | rows, |
int | cols | ||
) |
void BioMatrix::setValue | ( | int | row, |
int | col, | ||
float | val | ||
) |
void BioMatrix::showMatrix | ( | ostream & | = cout | ) |