代码搜索:贝叶斯算法

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

代码结果 10,000
www.eeworm.com/read/359101/10165932

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/357066/10216660

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/161158/10443168

c 龙贝格算法.c

/* 这份源代码文件已被未注册的SourceFormatX格式化过 */ /* 如果您想不再添加此类信息,请您注册这个共享软件 */ /* 更多相关信息请访问网站: http://cn.textrush.com */ ///////////////////////////////////////////////////////////////////// //
www.eeworm.com/read/160916/10471081

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/348857/10863270

frm 龙贝格算法.frm

VERSION 5.00 Begin VB.Form Form19 BackColor = &H00FFFFFF& Caption = "龙贝格算法" ClientHeight = 9210 ClientLeft = 60 ClientTop = 345 ClientWi
www.eeworm.com/read/416704/11017558

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/327510/13073707

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/310378/13652656

cpp 龙贝格算法.cpp

#include #include #include using namespace std; double f(double x) { if(x==0) return 1; else return sin(x)/x; } int main() { int i=0; double r[20];