代码搜索:查表法

找到约 10,000 项符合「查表法」的源代码

代码结果 10,000
www.eeworm.com/read/109003/15568886

c thrice.c

/* 用弦截法求解方程的根 */ # include # include float f(float x) { float y; y = ((x-8.0)*x+12.0)*x - 30.0; return y; } float xpoint(float x1, float x2) /* 定义函数xpoint,求出弦
www.eeworm.com/read/106028/15648809

cpp newdd.cpp

/*该程序功能:据136页牛顿迭代法求解方程的近似根。*/ #include "stdafx.h" #include #include #include double f(double x) { return x*exp(x)-1; } double qdf(double x) { return exp(x)+x*
www.eeworm.com/read/103618/15727680

m exm04311_1.m

%exm04311_1.m %直接对域赋值法产生"单构架"。 green_house.name='一号房'; %构架域由(构架名).(域名)标识。 green_house.volume='2000立方米'; % green_house.parameter.temperature=[31.2 30.4 31.6 28.7
www.eeworm.com/read/103612/15728001

cpp le_tridiagonalequationgauss.cpp

//LE_TridiagonalEquationGauss.cpp 求解三对角线方程组的追赶法 #include //输入输出流头文件 #include "LinearEquation.h" //线性方程(组)求解头文件 void main() { int i; double b[13] = { 13.0, 12.
www.eeworm.com/read/102457/15780301

txt 3.txt

矩阵求逆一般使用Gauss-Jordan消去法。用C写的,做成DLL使用很方便。 double * MatrixOpp(double A[],int m,int n) /*矩阵求逆*/ { int i,j,x,y,k; double *SP=NULL,*AB=NULL,*B=NULL,X,*C; SP=(double *)mallo
www.eeworm.com/read/101780/15818197

01 turbo c 2.0、borland c++库函数及用例.01

Turbo C 2.0、Borland C++库函数及用例 字母A开头函数 函数名: abort 功 能: 异常终止一个进程 用 法: void abort(void); 程序例: #include #include int main(void) { printf("Calling abort()\n"); abort
www.eeworm.com/read/101025/15856364

res uipy_tbl.res

/*********************************************************************/ // 文 件 名: uiPY_Tbl.res // 程序说明: 拼音输入法编码和候选字起始位置资源文件 // 程序设计: 张学平 // 2001.11.05 设计完成 说明文档:R004-S240-0001 // 程序审查: 宋军霞
www.eeworm.com/read/100347/15876479

cpp getcode.cpp

//各种内码输入法 #include "stdafx.h" #include "cspublic.h" #include "csinput.h" #include "getcode.h" static unsigned char c1 , c2 ; //记录翻页位置 int nPages , nPageStep ; //记录翻页次数和最后一次翻页的步长 /
www.eeworm.com/read/377379/9278607

c crc.c

//循环冗余校验表及函数库 //查表 const unsigned short Table_CRC[256]= { // CRC 表 0x0000 ,0xc0c1 ,0xc181 ,0x0140 ,0xc301 ,0x03c0 ,0x0280 ,0xc241 , 0xc601 ,0x06c0 ,0x0780 ,0xc741 ,0x0500 ,0xc5c1 ,0xc481 ,0x
www.eeworm.com/read/377372/9278884

c crc.c

//循环冗余校验表及函数库 //查表 const unsigned short Table_CRC[256]= { // CRC 表 0x0000 ,0xc0c1 ,0xc181 ,0x0140 ,0xc301 ,0x03c0 ,0x0280 ,0xc241 , 0xc601 ,0x06c0 ,0x0780 ,0xc741 ,0x0500 ,0xc5c1 ,0xc481 ,0x