代码搜索:SIMP

找到约 1,031 项符合「SIMP」的源代码

代码结果 1,031
www.eeworm.com/read/475751/6777140

chr simp.chr

www.eeworm.com/read/475751/6777194

fnt simp.fnt

www.eeworm.com/read/475751/6777195

chr simp.chr

www.eeworm.com/read/475751/6777252

fnt simp.fnt

www.eeworm.com/read/475751/6777256

chr simp.chr

www.eeworm.com/read/474177/6815876

chr simp.chr

www.eeworm.com/read/471742/6888656

m simp.m

%simp.m function simpu=simp(f,inc) %Simpson's rule for numerical integration %f is an odd array of evaluated functions in steps inc ip=length(f); %must be an odd number s1=sum(f(2:2:ip-1
www.eeworm.com/read/295689/8145686

c simp.c

#include "c.h" #define foldcnst(TYPE,VAR,OP,RTYPE) \ if (l->op == CNST+TYPE && r->op == CNST+TYPE) {\ p = tree(CNST+ttob(RTYPE), RTYPE, NULL, NULL);\ p->u.v.VAR = l->u.v.VAR OP r->u.v.VAR;\
www.eeworm.com/read/195211/8168545

c simp.c

#include #include double Function(double); double SIMP1(double,double,int); double SIMP2(double,double,double); void main() { double a1,b1,eps; int n1; double Result
www.eeworm.com/read/293427/8295030

c simp.c

#include "math.h" double simp(a,b,eps,f) double a,b,eps,(*f)(); { int n,k; double h,t1,t2,s1,s2,ep,p,x; n=1; h=b-a; t1=h*((*f)(a)+(*f)(b))/2.0; s1=t1; ep=eps+1.0;