代码搜索:插值优化

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

代码结果 10,000
www.eeworm.com/read/313329/13590235

txt 拉格郎日插值matlab.txt

>> x=[0.4 0.5 0.6 0.7 0.8]; >> y=[-0.916291 -0.693147 -0.510826 -0.356675 -0.223144]; >> T=interp1(x,y,0.54,'linear')   %线性插值 T =   -0.6202 >> T=interp1(x,y,0.54,'nearest')  % 最近邻点插值 T =
www.eeworm.com/read/484035/6589602

txt 牛顿插值法的c ++语言程序.txt

牛顿插值法的C++语言程序: #include #include #include using namespace std; void main(){ //将插值节点存放在u[6]数组中 double u[6]={0.40,0.55,0.65,0.80,0.90,1.05}; //将节点处对应的函数值存放在v[6]数组中
www.eeworm.com/read/482381/6623703

txt 被逼近函数和lagrange插值函数.txt

int i,j,e; float x,y,p_x,p_y,temp,xx[11],yy[11],mm[11],sum,p_sum; Form1->Canvas->Pen->Color=clBlack;//轴色 Form1->Canvas->MoveTo(100,300);Form1->Canvas->LineTo(450,300);//横轴 Form1->Canva
www.eeworm.com/read/120395/14804102

txt 用c语言编写牛顿插值程序.txt

用C语言编写牛顿插值程序 #include "stdio.h" #define N 4 main() { float x0[N+1],y0[N+1],a[N+1]; float x, t,sum; int i,j,m; printf("input x="); scanf("%f",&x); printf("\ninput the array x0[
www.eeworm.com/read/118180/14884009

txt 用c语言编写牛顿插值程序.txt

用C语言编写牛顿插值程序 #include "stdio.h" #define N 4 main() { float x0[N+1],y0[N+1],a[N+1]; float x, t,sum; int i,j,m; printf("input x="); scanf("%f",&x); printf("\ninput the array x0[
www.eeworm.com/read/111898/15500713

cpp splin2(用于计算插值结果).cpp

void splin2(double x1a[], double x2a[], double ya[][11], double y2a[][11], int m, int n, double x1, double x2, double& y) { double ytmp[100], y2tmp[100], yytmp[100]; int j,k; for (j = 1