代码搜索:贝叶斯算法
找到约 10,000 项符合「贝叶斯算法」的源代码
代码结果 10,000
www.eeworm.com/read/304895/13783680
cpp 龙贝格算法.cpp
#include"iostream.h"
#include"math.h"
#include"iomanip.h"
#define EPS 1e-6
double f(double x)//f为求积函数指针
{
return 4/(1+x*x);
}
void romberg(double(*f)(double),double a,double b)//a,b分别为积分上下限
www.eeworm.com/read/406444/11442276
cpp 龙贝格算法.cpp
#include
#include
float f(float x)
{
return 1/(1+x*x);
}
float Romberg(float a,float b,float (*f)(float),float epsilon)
{
int n=1,k;
float h=b-a,x,temp;
float T1,T2
www.eeworm.com/read/157521/11696519
cpp 龙贝格算法.cpp
#include
#include
float f(float x)
{
return 1/(1+x*x);
}
float Romberg(float a,float b,float (*f)(float),float epsilon)
{
int n=1,k;
float h=b-a,x,temp;
float T1,T2
www.eeworm.com/read/118681/14859562
c 龙贝格算法.c
www.eeworm.com/read/218376/14924247
cpp 龙贝格算法.cpp
#include
#include
float f(float x)
{
return 1/(1+x*x);
}
float Romberg(float a,float b,float (*f)(float),float epsilon)
{
int n=1,k;
float h=b-a,x,temp;
float T1,T2
www.eeworm.com/read/214293/15108220
c 龙贝格算法.c
www.eeworm.com/read/213486/15134135
doc 龙贝格算法.doc
www.eeworm.com/read/170698/9793207
c 龙贝格算法.c
www.eeworm.com/read/147252/12571594
c 龙贝格算法 .c
#include
#include
#define f(x) 4/(1+(x)*(x))
int g(int k)
{int i,total;
total=1;
for(i=1;i
www.eeworm.com/read/147252/12571610
c 龙贝格算法.c
#include
#include
int g(int k)
{
int i,total;
total=1;
for(i=1;i