代码搜索:插值优化
找到约 10,000 项符合「插值优化」的源代码
代码结果 10,000
www.eeworm.com/read/139544/13150069
asm 插值算法.asm
;程序作者: 马 良 QQ:8297327 电话:13087664858
;功能: 两个点的线性插值定点数算法。
;入口:已知两个点,坐标分别为 P1[ R_x1H R_x1L , R_y1H R_y1L ]
; 和 P2[ R_x2H R_x2L , R_y2H R_y2L ] 。未知点的x坐标为 R_xH R_xL 。
; 注意:x、y坐标
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/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/328305/6335215
doc 插值算法.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);