代码搜索:插值算法
找到约 10,000 项符合「插值算法」的源代码
代码结果 10,000
www.eeworm.com/read/398261/7996462
txt 牛顿插值(前向).txt
#include
#include
double Y;
double Newdon(double y[],double t,int n)
{ int m=1,i,k;
double C[11][11]={};
double s=y[0],d=1;
for(i=0;i
www.eeworm.com/read/296749/8079343
cpp 3次样条插值.cpp
/*#include
void main()
{
float a[]={2,4,3};
float b[]={0,1,1};
float c[]={1,1,0};
float f[]={3,12,11};
float q[3],p[3],x[3],y[3];
int i;
int n=3;
q[0]=a[0];
p[0]=b[0];
www.eeworm.com/read/295984/8129997
pps 插值与拟合实验.pps
www.eeworm.com/read/140909/13053064
exe 曲线_插值e.exe
www.eeworm.com/read/140909/13053069
vbw 曲线_插值v.vbw
modParameter = 88, 116, 525, 497, C
frmCalculate = 22, 29, 656, 514, , 88, 116, 525, 497, C
modMethod = 13, -10, 641, 554,
modCall = 26, 21, 786, 524,
frmFileName = 2, 21, 560, 402, , 22, 29, 58
www.eeworm.com/read/140909/13053078
vbp 曲线_插值v.vbp
Type=Exe
Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINNT\System32\stdole2.tlb#OLE Automation
Module=modParameter; 曲线_插值M1.bas
Form=曲线_插值F2.frm
Object={65E121D4-0C60-11D2-A9FC-00
www.eeworm.com/read/323141/13349058
vi 线性插值法.vi
www.eeworm.com/read/319870/13441308
cpp 二次插值.cpp
#include
#define F(x) (1/(1+25*(x)*(x)))
#include
#define N 32
#define M 200
#define F1(x0,x1) ((F(x1)-F(x0))/(x1-x0))
#define F2(x0,x1,x2) ((F1(x1,x2)-F1(x0,x1))/(x2-x0))
d
www.eeworm.com/read/307174/13727238