Go to the source code of this file.
Namespaces | |
MathUtils | |
Functions | |
void | MathUtils::kron (RealEigenMatrix &product, const RealEigenMatrix &mat_A, const RealEigenMatrix &mat_B) |
Computes the Kronecker product of two matrices. More... | |
Real | MathUtils::plainLog (Real x, unsigned int derivative_order) |
Real | MathUtils::poly1Log (Real x, Real tol, unsigned int derivative_order) |
Real | MathUtils::poly2Log (Real x, Real tol, unsigned int derivative_order) |
Real | MathUtils::poly3Log (Real x, Real tol, unsigned int derivative_order) |
Real | MathUtils::poly4Log (Real x, Real tol, unsigned int derivative_order) |
Real | MathUtils::taylorLog (Real x) |
std::vector< std::vector< unsigned int > > | MathUtils::multiIndex (unsigned int dim, unsigned int order) |
generate a complete multi index table for given dimension and order i.e. More... | |
Point | MathUtils::barycentricToCartesian2D (const Point &p0, const Point &p1, const Point &p2, const Real b0, const Real b1, const Real b2) |
Evaluate Cartesian coordinates of any center point of a triangle given Barycentric coordinates of center point and Cartesian coordinates of triangle's vertices. More... | |
Point | MathUtils::barycentricToCartesian3D (const Point &p0, const Point &p1, const Point &p2, const Point &p3, const Real b0, const Real b1, const Real b2, const Real b3) |
Evaluate Cartesian coordinates of any center point of a tetrahedron given Barycentric coordinates of center point and Cartesian coordinates of tetrahedon's vertices. More... | |
Point | MathUtils::circumcenter2D (const Point &p0, const Point &p1, const Point &p2) |
Evaluate circumcenter of a triangle given three arbitrary points. More... | |
Point | MathUtils::circumcenter3D (const Point &p0, const Point &p1, const Point &p2, const Point &p3) |
Evaluate circumcenter of a tetrahedrom given four arbitrary points. More... | |
std::vector< std::vector< unsigned int > > | multiIndexHelper (unsigned int N, unsigned int K) |
A helper function for MathUtils::multiIndex. More... | |
A helper function for MathUtils::multiIndex.
Definition at line 333 of file MathUtils.C.
Referenced by MathUtils::multiIndex().