代码搜索:最邻近插值算法

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

代码结果 10,000
www.eeworm.com/read/322869/13362967

cpp 牛顿插值.cpp

#include void main(void) { int n,j; double x[100],y[100],a[100],X; cout
www.eeworm.com/read/322869/13362973

cpp lagrange插值.cpp

# include void main(void) { cout
www.eeworm.com/read/322741/13368467

doc 牛顿插值.doc

www.eeworm.com/read/322737/13368563

doc hermit插值.doc

www.eeworm.com/read/319870/13441307

cpp hermite插值.cpp

#include #define F(x) (1/(1+25*(x)*(x))) #define F1(x) -50*x/((1+25*x*x)*(1+25*x*x)) #define L(y,x0,x1,x2) ((y)-x1)*((y)-x2)/((x0-x1)*(x0-x2)) #define FA(y,x0,x1,x2) (1-2*(y-x0)*(1/(x0
www.eeworm.com/read/319829/13441503

txt 牛顿插值.txt

import java.util.*; import java.awt.*; import javax.swing.*; public class chazhi { public static void main(String args[]) { new CH().init(); } } class CH extends JFrame { public voi
www.eeworm.com/read/315837/13535483

doc matlab插值.doc

www.eeworm.com/read/482381/6623699

txt hermite 插值.txt

int i,j,e,n; float x,y,p_x,p_y,temp,xx[11],yy[11],mm[11],h0,h1,H0,H1,tt[11],sum,p_sum; Form1->Canvas->Pen->Color=clBlack;//轴色 Form1->Canvas->MoveTo(100,300);Form1->Canvas->LineTo(450,300);
www.eeworm.com/read/263375/11365368

opt 插值函数.opt

www.eeworm.com/read/263375/11365371

cpp 插值函数.cpp

// 插值函数.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include"stdio.h" #include"stdlib.h" #include"iostream.h" int main(int argc, char* argv[])