代码搜索:插值优化
找到约 10,000 项符合「插值优化」的源代码
代码结果 10,000
www.eeworm.com/read/277684/10612685
dsp 三次样条插值.dsp
# Microsoft Developer Studio Project File - Name="三次样条插值" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Co
www.eeworm.com/read/277684/10612689
plg 三次样条插值.plg
Build Log
--------------------Configuration: 三次样条插值 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI
www.eeworm.com/read/422506/10633931
c 牛顿插值多项式.c
www.eeworm.com/read/417573/10984993
jpg 二维插值图.jpg
www.eeworm.com/read/469283/6980111
txt 二次插值法.txt
#include
#include
#define EP 0.0001
#define E 0.01
#define fori for(i=0;i
www.eeworm.com/read/454270/7395413
c 牛顿插值多项式.c
www.eeworm.com/read/445360/7596364
txt 拉格朗日插值.txt
#include
#define ZD 20
main()
{
int k,n,j;
float h[ZD],f[ZD];
float y,l,x;
printf("Input n:");
scanf("%d",&n);
printf("Input n+1 ge shjd:\n");
for(k=0;k
www.eeworm.com/read/435931/7780685
txt 全区间内langrange插值.txt
#include "stdio.h"
double nlgr(x,y,n,t)
int n;
double t,x[],y[];
{ int i,j,k,m;
double z,s;
z=0.0;
if (n
www.eeworm.com/read/398261/7996429
txt 拉格朗日插值.txt
#include
#include
double Y;
double Lagrange(double x[],double y[],int n,double m)
{ int i,k;
double T1,T2,T3,L=0;
for(i=0;i
www.eeworm.com/read/398046/8007778
txt 拉格朗日插值.txt
function yy=lagrange(x,y,xx)
% Lagrange 插值
% yy=lagrange(x,y,xx)求数据(x,y)所表达的函数在插值点xx处的插值
% 要求x,y为同维数向量
%例如 数据
% x | 0.1 0.2 0.15 0.0 -0.2 0.3
% --|------------------------------
% y