vnl_fft.cxx
来自「InsightToolkit-1.4.0(有大量的优化算法程序)」· CXX 代码 · 共 38 行
CXX
38 行
// This is vxl/vnl/algo/vnl_fft.cxx
#ifdef VCL_NEEDS_PRAGMA_INTERFACE
#pragma implementation
#endif
//:
// \file
// \author fsm
#include "vnl_fft.h"
#include "vnl_netlib.h"
void vnl_fft_setgpfa(float *triggs, int size, int pqr[3], int *info)
{
setgpfa_(triggs, &size, pqr, info);
}
void vnl_fft_setgpfa(double *triggs, int size, int pqr[3], int *info)
{
dsetgpfa_(triggs, &size, pqr, info);
}
//----------------------------------------------------------------------
void vnl_fft_gpfa(float *a, float *b, float const *triggs,
int inc, int jump, int n,
int lot, int isign, int const pqr[3], int *info)
{
gpfa_(a, b, triggs, &inc, &jump, &n, &lot, &isign, pqr, info);
}
void vnl_fft_gpfa(double *a, double *b, double const *triggs,
int inc, int jump, int n,
int lot, int isign, int const pqr[3], int *info)
{
dgpfa_(a, b, triggs, &inc, &jump, &n, &lot, &isign, pqr, info);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?