gridops.h

来自「这是一个关于最小二乘法相位积分展开的实现程序」· C头文件 代码 · 共 12 行

H
12
字号
#ifndef __GRIDOPS
#define __GRIDOPS
void Restrict(float *dx2, float *dy2, int wc, int hc,
              float *dx, float *dy, float *dxwts,
              float *dywts, float *soln, int wf, int hf);
void ProlongAndAccumulate(float *fine, int wf, int hf,
                          float *coarse, int wc, int hc,
                          float *coarse_dxwts, float *coarse_dywts);
int Coarsest(int w, int h, int coarsest_dim);
void Zero(float *soln, int w, int h);
#endif

⌨️ 快捷键说明

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