代码搜索:插值优化

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

代码结果 10,000
www.eeworm.com/read/111899/15500711

cpp splint(计算插值函数在插值点的函数值).cpp

void splint(double xa[], double ya[], double y2a[], int n, double& x, double& y) { int klo,khi,k; double h,a,b,aaa,bbb; klo = 1; khi = n; loop: if (khi - klo > 1 ) { k = (khi +
www.eeworm.com/read/427336/8950644

m 插值查找(没标定).m

%逐行逐列查找位相相同点,进行了插值和查找范围分类,程序较复杂,但只进行了垂直条纹的投影,存在对准问题 %仍没进行标定 p=32;%期望条纹周期 q=32;%等效周期 %--------------读入测量图象---------------- i1=imread('D:\matlab\work\cy\4-0.bmp'); i1=double(i1); i2=imread('D:\ma
www.eeworm.com/read/383218/8960408

c 分段线性插值.c

#include void main() { float xy[2][11],x,y; int n,i,j; char flag='y'; printf("input n,max[n]=10\n"); scanf("%d",&n); printf("input x[i],y[i]:\n"); printf("input x[i]:\n"
www.eeworm.com/read/425408/10358850

txt 牛顿插值源代码.txt

Dim x(3), y(3, 3) As Single Const n = 3 Private Sub Command1_Click() Text1.Text = "" Dim s As Single xl = Text2.Text For j = 1 To n For i = j To n y(i, j) = (y(i, j - 1) - y(
www.eeworm.com/read/353054/10475298

cpp 分段线性插值.cpp

// 分段线性插值.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "iostream.h" #include "math.h" double li(double x0,double h,int n,double y[],double t)