代码搜索:SIMP

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

代码结果 1,031
www.eeworm.com/read/391726/8386105

txt simp1.txt

Procedure SIMP1(var A:matrx2; MP, NP, MM:integer; LL:array of integer; NLL, IABF:integer;var KP:integer; var BMAX:real); var K:integer; TEST:real; begin KP:=LL
www.eeworm.com/read/192256/8392607

txt simp2.txt

Procedure SIMP2(var A:matrx2; M, N, MP, NP:integer; L2:array of integer; NL2:integer;var IP, KP:integer; Q1:real); label 1,2; const EPS = 0.000001; var I
www.eeworm.com/read/192256/8392612

txt simp3.txt

Procedure SIMP3(var A:matrx2; MP, NP, I1, K1:integer;var IP, KP:integer); var PIV:real; II,KK:integer; begin PIV:=1 / A[IP + 1, KP + 1]; For II:=1 To I1 + 1 do begin I
www.eeworm.com/read/192256/8392626

txt simp1.txt

Procedure SIMP1(var A:matrx2; MP, NP, MM:integer; LL:array of integer; NLL, IABF:integer;var KP:integer; var BMAX:real); var K:integer; TEST:real; begin KP:=LL
www.eeworm.com/read/291235/8433132

cpp simp1.cpp

#include #include "nr.h" using namespace std; void NR::simp1(Mat_I_DP &a, const int mm, Vec_I_INT &ll, const int nll, const int iabf, int &kp, DP &bmax) { int k; DP test; if (n
www.eeworm.com/read/291235/8433157

cpp simp2.cpp

#include "nr.h" void NR::simp2(Mat_I_DP &a, const int m, const int n, int &ip, const int kp) { const DP EPS=1.0e-14; int k,i; DP qp,q0,q,q1; ip=0; for (i=0;i
www.eeworm.com/read/291235/8433363

cpp simp3.cpp

#include "nr.h" void NR::simp3(Mat_IO_DP &a, const int i1, const int k1, const int ip, const int kp) { int ii,kk; DP piv; piv=1.0/a[ip][kp]; for (ii=0;ii
www.eeworm.com/read/290204/8497112

c simp0.c

#include "stdio.h" #include "simp.c" main() { double a,b,eps,t,simpf(); a=0.0; b=1.0; eps=0.000001; t=simp(a,b,eps,simpf); printf("\n"); printf("t=%e\n",t); print
www.eeworm.com/read/431721/8659577

c 9simp.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;
www.eeworm.com/read/387489/8671163

txt simp2.txt

Procedure SIMP2(var A:matrx2; M, N, MP, NP:integer; L2:array of integer; NL2:integer;var IP, KP:integer; Q1:real); label 1,2; const EPS = 0.000001; var I