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

📄 vnl_real.h

📁 InsightToolkit-1.4.0(有大量的优化算法程序)
💻 H
字号:
// This is vxl/vnl/vnl_real.h
#ifndef vnl_real_h_
#define vnl_real_h_
//:
// \file
// \brief Functions to return the real parts of complex arrays, vectors, matrices
//
// \verbatim
// Modifications
// Peter Vanroose - 2 July 2002 - part of vnl_complex_ops.h moved here
// \endverbatim

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

//: Return array R of real parts of complex array C.
template <class T> void vnl_real(vcl_complex<T> const* C, T* R, unsigned int n);

//: Vector of real parts of vnl_vector<vcl_complex<T> >.
// \relates vnl_vector
template <class T> vnl_vector<T> vnl_real(vnl_vector<vcl_complex<T> > const& C);

//: Matrix of real parts of vnl_matrix<vcl_complex<T> >.
// \relates vnl_matrix
template <class T> vnl_matrix<T> vnl_real(vnl_matrix<vcl_complex<T> > const& C);

#endif // vnl_real_h_

⌨️ 快捷键说明

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