📄 vnl_adjugate.txx
字号:
#ifndef vnl_adjugate_txx_
#define vnl_adjugate_txx_
/*
fsm
*/
#include "vnl_adjugate.h"
#include <vnl/vnl_matrix.h>
#include <vnl/algo/vnl_determinant.h>
// This is a rudimentary implementation. It could be improved by noting
// that adj(A B) = adj(B) adj(A) for all matrices A, B (invertible or
// not) and then using a matrix decomposition for larger matrices.
//
// E.g. using a singular value decomposition A = U D V^* gives
// adj(A) = V adj(D) U^*.
template <class T>
void vnl_adjugate(vnl_matrix<T> const &A, vnl_matrix<T> *out)
{
int n = A.rows();
A.assert_size(n, n);
out->assert_size(n, n);
vnl_matrix<T> sub(n-1, n-1);
for (int i=0; i<n; ++i) {
for (int j=0; j<n; ++j) {
for (int u=1; u<n; ++u)
for (int v=1; v<n; ++v)
sub[u-1][v-1] = A[(i+u)%n][(j+v)%n];
(*out)[j][i] = vnl_determinant(sub);
}
}
}
template <class T>
vnl_matrix<T> vnl_adjugate(vnl_matrix<T> const &A)
{
vnl_matrix<T> adj(A.rows(), A.cols());
vnl_adjugate(A, &adj);
return adj;
}
//--------------------------------------------------------------------------------
#undef VNL_ADJUGATE_INSTANTIATE
#define VNL_ADJUGATE_INSTANTIATE(T) \
template void vnl_adjugate(vnl_matrix<T > const &, vnl_matrix<T > *); \
template vnl_matrix<T > vnl_adjugate(vnl_matrix<T > const &)
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -