代码搜索:插值算法

找到约 10,000 项符合「插值算法」的源代码

代码结果 10,000
www.eeworm.com/read/282793/9059877

m lms_adapter.m

u=0.00025; %算法的收敛性由收敛因子u决定,只有u在理论要求的范围内时,算法才收敛,否则发散。 %在u值使算法收敛的范围内,u值越大,收敛速度越快,u值越小,收敛速度越慢。 N=200;fo=100;f=1000;fai=pi/6;C=10;noise=1*randn(1,N); pow1=(noise.*noise); %pow1相当于randn(
www.eeworm.com/read/490467/6456873

txt gaobject.txt

遗传算法实现求函数最小值 程序的各函数的简单算法说明如下: void generateinitial ()和void input ()初始化种群和遗传算法参数。 input() 函数输入种群大小,染色体长度,最大世代数,交叉率,变异率等参数。 void calculateobjectvalue();计算适应度函数值 。根据给定的变量用适应度函数计算然后返回适度值。可选计算最大值或计算最 ...
www.eeworm.com/read/487407/6511150

cpp c.cpp

#include #include #include typedef struct data { float x; float y; }Data;//变量x和函数值y的结构 Data d[20];//最多二十组数据 float f(int s,int t)//牛顿插值法,用以返回插商 { if(t==s+1)
www.eeworm.com/read/214783/15088759

cpp lagrangenewton.cpp

#include #include #include typedef struct data { float x; float y; }Data;//变量x和函数值y的结构 Data d[20];//最多二十组数据 float f(int s,int t)//牛顿插值法,用以返回插商 { if(t==s+1)
www.eeworm.com/read/208703/15239041

cpp ndlglr.cpp

#include #include #include typedef struct data { float x; float y; }Data;//变量x和函数值y的结构 Data d[20];//最多二十组数据 float f(int s,int t)//牛顿插值法,用以返回插商 { if(t==s+1)
www.eeworm.com/read/265866/11251750

txt lg.txt

#include #include #include typedef struct data { float x; float y; }Data;//变量x和函数值y的结构 Data d[20];//最多二十组数据 float f(int s,int t)//牛顿插值法,用以返回插商 { if(t==s+1)
www.eeworm.com/read/141794/12984122

java dft.java

//DFT算法 public class DFT { //data为被采样的信号数据 private int[] data; //n为采样点个数 private int n; //sampleData为n个采样值 private int[] sampleData; //xk为复数xn经过DFT算法后获得的转换值 private Complex[] xk,xn