Go to the source code of this file.
|
namespace | util |
| Collection of methods useful in simulation.
|
|
|
bool | util::checkMatrix (const std::vector< std::vector< double > > &m) |
| Checks matrix.
|
|
std::vector< double > | util::dot (const std::vector< std::vector< double > > &m, const std::vector< double > &v) |
| Computes the dot product between matrix and vector.
|
|
std::vector< std::vector< double > > | util::transpose (const std::vector< std::vector< double > > &m) |
| Computes the tranpose of matrix.
|
|
double | util::det (const std::vector< std::vector< double > > &m) |
| Computes the determinant of matrix.
|
|
std::vector< std::vector< double > > | util::inv (const std::vector< std::vector< double > > &m) |
| Computes the determinant of matrix.
|
|