代码搜索:贝叶斯算法

找到约 10,000 项符合「贝叶斯算法」的源代码

代码结果 10,000
www.eeworm.com/read/289058/8581960

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/428233/8881991

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/381765/9072416

cpp 龙贝格算法.cpp

#include #include float fun(float x) { return exp(-x*x); } float Romberg(float a,float b,float(*f)(float),float eps) { int n=1,k; float h=b-a,x,temp; float T1,T2,S1,S