⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vnl_orthogonal_complement.h

📁 InsightToolkit-1.4.0(有大量的优化算法程序)
💻 H
字号:
// This is vxl/vnl/algo/vnl_orthogonal_complement.h
#ifndef vnl_orthogonal_complement_h_
#define vnl_orthogonal_complement_h_
//:
// \file
// \brief For computing the orthogonal complement to a linear subspace.
// \author fsm
//
// \verbatim
// Modifications
// 4/4/01 LSB(Manchester) Tidied documentation
//   Feb.2002 - Peter Vanroose - brief doxygen comment placed on single line
// \endverbatim

#include <vnl/vnl_vector.h>
#include <vnl/vnl_matrix.h>

//: Return a matrix whose columns span is the orthogonal complement of v.
template <class T>
vnl_matrix<T> vnl_orthogonal_complement(vnl_vector<T> const &v);

#if 0
//: Return a matrix whose column span is the orthogonal complement of the column span of M.
template <typename T>
vnl_matrix<T> vnl_orthogonal_complement(vnl_matrix<T> const &M);
#endif

#endif // vnl_orthogonal_complement_h_

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -