Go to the source code of this file.
Macros | |
| #define | VNL_DETERMINANT_INSTANTIATE_1(T) |
| #define | VNL_DETERMINANT_INSTANTIATE_2(T) template VNL_ALGO_EXPORT T vnl_determinant(vnl_matrix<T > const &, bool) |
| #define | VNL_DETERMINANT_INSTANTIATE(T) |
Functions | |
| template<class T > | |
| T | vnl_determinant (T const *row0, T const *row1) |
| direct evaluation for 2x2 matrix. More... | |
| template<class T > | |
| T | vnl_determinant (T const *row0, T const *row1, T const *row2) |
| direct evaluation for 3x3 matrix. More... | |
| template<class T > | |
| T | vnl_determinant (T const *row0, T const *row1, T const *row2, T const *row3) |
| direct evaluation for 4x4 matrix. More... | |
| template<class T > | |
| T | vnl_determinant (vnl_matrix< T > const &M, bool balance) |
| evaluation using direct methods for sizes of 2x2, 3x3, and 4x4 or qr decomposition for other matrices. More... | |
| #define VNL_DETERMINANT_INSTANTIATE | ( | T | ) |
Definition at line 123 of file vnl_determinant.hxx.
| #define VNL_DETERMINANT_INSTANTIATE_1 | ( | T | ) |
Definition at line 114 of file vnl_determinant.hxx.
| #define VNL_DETERMINANT_INSTANTIATE_2 | ( | T | ) | template VNL_ALGO_EXPORT T vnl_determinant(vnl_matrix<T > const &, bool) |
Definition at line 119 of file vnl_determinant.hxx.
| T vnl_determinant | ( | T const * | row0, |
| T const * | row1 | ||
| ) |
direct evaluation for 2x2 matrix.
Definition at line 16 of file vnl_determinant.hxx.
| T vnl_determinant | ( | T const * | row0, |
| T const * | row1, | ||
| T const * | row2 | ||
| ) |
direct evaluation for 3x3 matrix.
Definition at line 22 of file vnl_determinant.hxx.
| T vnl_determinant | ( | T const * | row0, |
| T const * | row1, | ||
| T const * | row2, | ||
| T const * | row3 | ||
| ) |
direct evaluation for 4x4 matrix.
Definition at line 34 of file vnl_determinant.hxx.
| T vnl_determinant | ( | vnl_matrix< T > const & | M, |
| bool | balance | ||
| ) |
evaluation using direct methods for sizes of 2x2, 3x3, and 4x4 or qr decomposition for other matrices.
Definition at line 66 of file vnl_determinant.hxx.
1.8.15