代码搜索:查表法

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

代码结果 10,000
www.eeworm.com/read/161509/10400023

m mutual_information_main.m

function tau=Mutual_Information_main(data) %互信息法求tau %data; % 时间序列,列向量 max_t = 20; % 本程序默认最大时延 %Part = 128; % 本程序默认box大小 [entropy]=mutual(data,max_t); for i = 1:length(entropy)-1
www.eeworm.com/read/279550/10421236

txt 最大流 增广路(my).txt

#include #include #include #include using namespace std; //求网络最大流 增广路法 /* 输入: 4 5 1 4 1 2 6 1 3 5 2 3 2 2 4 5 3 4 9 输出: 11 */ #define NMAX
www.eeworm.com/read/160269/10546704

m laplacian.m

%拉氏边沿检测法% [image map]=bmpread('L8_4.bmp'); %读取图像 image_edge_1=edge(image,'log',[],2); %使用边沿检测中的越零点检测,其中[ ] %是空矩阵,其edge 函数会自动检测最
www.eeworm.com/read/352044/10585949

cpp rootnewtonhilldown.cpp

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

cpp approximationremez.cpp

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

cpp extremumbrentnonderivative1d.cpp

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

m mutual_information_main.m

function tau=Mutual_Information_main(data) %互信息法求tau %作者:Adu 武汉大学 adupopo@163.com %data; % 时间序列,列向量 %max_tau = 100; % 本程序默认最大时延 %Part = 128; % 本程序默认box大小 [entropy]=mutual(data,128);
www.eeworm.com/read/351570/10639542

cpp algo0701.cpp

Status CreateGraph( MGraph &G ) { // 算法7.1 // 采用数组(邻接矩阵)表示法,构造图G。 scanf(&G.kind); // 自定义输入函数,读入一个随机值 switch (G.kind) { case DG: return CreateDG(G); // 构造有向图G case
www.eeworm.com/read/350382/10745632

m 5-11.m

%例程5-11 利用基于AR模型的最大熵法估计功率谱 % e.g.5-11.m for example5-11; % to test function pyulear; clf; clear all; % Generate the signal plus white noise and show N=1024; n=0:1/(N-1):1; %Sampling
www.eeworm.com/read/350382/10745651

m 5-10.m

%例程5-10 利用MTM法估计功率谱 % e.g.5-10.m for example5-10. % to test function pmtm; clear all; % Generate the signal with noise and display N=1024; n=0:1/(N-1):1; %Sampling frequency N-1 f1=0.1;