📄 vnl_det.h
字号:
// This is vxl/vnl/vnl_det.h
#ifndef vnl_det_h_
#define vnl_det_h_
//:
// \file
// \brief Direct evaluation of 2x2, 3x3 and 4x4 determinants.
// \author fsm
//
// \verbatim
// Modifications
// Peter Vanroose - 15 Oct. 2001 - Renamed from vnl_determinant to vnl_det
// Peter Vanroose - 15 Oct. 2001 - Added vnl_matrix_fixed interface
// \endverbatim
#include <vnl/vnl_matrix_fixed.h>
//: 2x2 matrix
template <class T> T vnl_det(T const *row0,
T const *row1);
//: 3x3 matrix
template <class T> T vnl_det(T const *row0,
T const *row1,
T const *row2);
//: 4x4 matrix
template <class T> T vnl_det(T const *row0,
T const *row1,
T const *row2,
T const *row3);
//: Determinant of small size matrices
// \relates vnl_matrix
template <class T>
inline T vnl_det(vnl_matrix_fixed<T,1,1> const& m) { return m[0][0]; }
//: Determinant of small size matrices
// \relates vnl_matrix
template <class T>
inline T vnl_det(vnl_matrix_fixed<T,2,2> const& m) { return vnl_det(m[0],m[1]); }
//: Determinant of small size matrices
// \relates vnl_matrix
template <class T>
inline T vnl_det(vnl_matrix_fixed<T,3,3> const& m) { return vnl_det(m[0],m[1],m[2]); }
//: Determinant of small size matrices
// \relates vnl_matrix
template <class T>
inline T vnl_det(vnl_matrix_fixed<T,4,4> const& m) { return vnl_det(m[0],m[1],m[2],m[3]); }
#endif // vnl_det_h_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -