vnl_adaptsimpson_integral.h
来自「DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.」· C头文件 代码 · 共 34 行
H
34 行
#ifndef VNL_ADAPTSIMPSON_INTEGRAL_H_
#define VNL_ADAPTSIMPSON_INTEGRAL_H_
//:
// \file
// \author Kongbin Kang at Brown
// \date Jan. 17th, 2005
//
#include <vnl/vnl_definite_integral.h>
class vnl_adaptsimpson_integral : public vnl_definite_integral
{
private:
//: used to wrap the function class to an ordinary function.
static double int_fnct_(double* x);
protected:
//: maximum recursion deepth
int deepth_;
//: real computation
double adaptivesimpson(double(*f)(double*), double a, double b, double eps, int level, int level_max);
public:
vnl_adaptsimpson_integral(int deepth = 32) : deepth_(deepth) {}
//: a and b are integral limits respectively.
// n is the number of intervals used in integral.
// accuracy is the accuracy you want to achieve. Norally accuracy > 1e-11)
double integral(vnl_integrant_fnct *f, double a, double b, double accuracy);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?