Public Methods | |
Matrix () | |
Matrix (std::string input) | |
Matrix (std::vector< std::vector< float > > input) | |
~Matrix () | |
double ** | parseInput (std::string input) |
void | printMatrix () |
std::vector< std::vector< float > > | toVector () |
Static Public Methods | |
double | stringToDouble (std::string &s) |
void | printMatrix (Matrix *matrix) |
std::vector< double > * | rowAtIndex (Matrix *input, unsigned int index) |
std::vector< double > * | columnAtIndex (Matrix *input, unsigned int index) |
double | dotProduct (std::vector< double > *firstVector, std::vector< double > *secondVector) |
Matrix * | multiply (Matrix *firstMatrix, Matrix *secondMatrix) |
Public Attributes | |
double ** | value |
int | columns |
int | rows |
|
Definition at line 41 of file orcaplugin.C. References columns, rows, and value. Referenced by multiply. |
|
Definition at line 47 of file orcaplugin.C. References parseInput, and value. |
|
Definition at line 52 of file orcaplugin.C. |
|
Definition at line 79 of file orcaplugin.C. |
|
Definition at line 218 of file orcaplugin.C. Referenced by multiply. |
|
Definition at line 227 of file orcaplugin.C. Referenced by multiply. |
|
Definition at line 240 of file orcaplugin.C. References columnAtIndex, columns, dotProduct, Matrix, rowAtIndex, rows, and value. Referenced by convertPure. |
|
Definition at line 87 of file orcaplugin.C. References columns, rows, and stringToDouble. Referenced by Matrix. |
|
Definition at line 178 of file orcaplugin.C. |
|
Definition at line 160 of file orcaplugin.C. |
|
Definition at line 209 of file orcaplugin.C. References columns, and value. Referenced by multiply. |
|
Definition at line 147 of file orcaplugin.C. Referenced by parseInput. |
|
Definition at line 196 of file orcaplugin.C. References columns, rows, and value. Referenced by convertPure. |
|
Definition at line 39 of file orcaplugin.C. Referenced by Matrix, multiply, parseInput, printMatrix, rowAtIndex, and toVector. |
|
Definition at line 39 of file orcaplugin.C. Referenced by columnAtIndex, Matrix, multiply, parseInput, printMatrix, toVector, and ~Matrix. |
|
Definition at line 38 of file orcaplugin.C. Referenced by columnAtIndex, Matrix, multiply, printMatrix, rowAtIndex, toVector, and ~Matrix. |