代码搜索:查表法

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

代码结果 10,000
www.eeworm.com/read/381951/9062023

cpp extremumbrentnonderivative1d.cpp

//ExtremumBrentNonDerivative1D.CPP //不用导数的布伦特法求一维函数极小值 #include //模板类iostream输入输出流标准头文件 #include "Extremum.h" //极值头文件 using namespace std; //名字空间 void main() { double fext
www.eeworm.com/read/184304/9110932

m exm037~1.m

%exm0371_1.m clear; A=zeros(2,3); A(:)=1:6; %全元素赋值法 A=A*(1+i) %运用标量与数组乘产生复数矩阵 A_A=A.' %数组转置,即非共轭转置 A_M=A' %矩阵转置,即共轭转置
www.eeworm.com/read/184304/9111063

m exm058~2.m

%exm05812_1.m 比较解析积分和近似积分 %(1)用符号法求解: syms x; F=int('cos(x)','x',-1,1) vpa(F) %(2)用式(5.8.1.2-4)近似计算: aF=cos(1/sqrt(3))+cos(-1/sqrt(3))
www.eeworm.com/read/184304/9111987

m gauss10.m

function g = gauss10(fun,a,b) %GAUSS10(fun,a,b) 利用10参数Gauss求积法近似计算a
www.eeworm.com/read/380446/9148580

cpp rootnewtonhilldown.cpp

//RootNewtonHillDown.cpp //牛顿下山法求解代数方程全部根(实根和复根) #include //输入输出流头文件 #include "NonLinearEquation.h" //非线性方程(组)求解头文件 using namespace std; //名字空间 void main(void) { int i, i
www.eeworm.com/read/380446/9148940

cpp approximationremez.cpp

//ApproximationRemez.cpp //最佳一致逼近多项式里米兹法 #include //模板类输入输出流标准头文件 #include "FittingApproximation.h" //拟合与逼近头文件 using namespace std; //名字空间 void main(void) { valarray
www.eeworm.com/read/380446/9149226

cpp extremumbrentnonderivative1d.cpp

//ExtremumBrentNonDerivative1D.CPP //不用导数的布伦特法求一维函数极小值 #include //模板类iostream输入输出流标准头文件 #include "Extremum.h" //极值头文件 using namespace std; //名字空间 void main() { double fext
www.eeworm.com/read/380114/9162225

txt jishufa2.txt

//基数排序法(函数模板)jishufa2.cpp #include #include const int N=10; const int rd=10; const int D=2; void output(int a[],int n) {cout
www.eeworm.com/read/380114/9162230

cpp jishufa2.cpp

//基数排序法(函数模板)jishufa2.cpp #include #include const int N=10; const int rd=10; const int D=2; void output(int a[],int n) {cout
www.eeworm.com/read/380114/9163061

txt migong.txt

//使用回溯法求解迷宫问题migong.cpp #include #include #include #include //路口的结构体定义 typedef struct {int left; int forward; int right; }InterS; //迷宫类定义与实现 c