代码搜索:插值算法
找到约 10,000 项符合「插值算法」的源代码
代码结果 10,000
www.eeworm.com/read/432379/8607780
txt 权值计算法.txt
www.eeworm.com/read/305042/13779506
txt 权值计算法.txt
www.eeworm.com/read/380036/9167457
doc 实验二 多项式插值的振荡现象和样条插值.doc
www.eeworm.com/read/389944/8492008
m nurbs插值曲线(可运行).m
%给定点列V( i ),随机给定权因子,构造三次NURBS插值点列V( i )
%载入数据 注意:每一行必为矢量(三个分量),否则会出错
%参数化
V=[0.5 2 0;1 3 0;2 8 0;3 10 0;5 11 0;8 30 0;10 10 0];
s=size(V);
n=s(1,1);
u(1)=0;
u(2)=0;
u(3)=0;
u(4)=0;
www.eeworm.com/read/432144/8624560
c 8.6 光滑插值 spl.c
#include "math.h"
void spl(x,y,n,k,t,s)
int n,k;
double t,x[],y[],s[5];
{ int kk,m,l;
double u[5],p,q;
s[4]=0.0; s[0]=0.0; s[1]=0.0; s[2]=0.0; s[3]=0.0;
if (n
www.eeworm.com/read/428933/8827984
mht 第7节 反插值.mht
From:
Subject: =?gb2312?B?tdrG373aILe0suXWtaql?=
Date: Sun, 8 Mar 2009 09:44:02 +0800
MIME-Version: 1.0
Content-Type: text/html;
charset="gb2312"
Content-Tran
www.eeworm.com/read/187300/8834740
txt 三次样条插值.txt
function S=myspline(x,y,dy1,dy2,xi)
[m,n]=size(x);
for i=1:n-1
h(i)=x(i+1)-x(i);
end
for i=1:n-1
b(i)=(y(i+1)-y(i))/h(i);
end
d(1)=b(1)-dy1;
d(n)=dy2-b(n-1);
for i=2:n-1
d(i)=b(
www.eeworm.com/read/427336/8950616
m 插值分类查找mod.m
p=32;%条纹周期
q=32;%等效周期
i1=imread('D:\matlab\work\cy2\4-0.bmp');
i1=double(i1);
i2=imread('D:\matlab\work\cy2\4-1.bmp');
i2=double(i2);
i3=imread('D:\matlab\work\cy2\4-2.bmp');
i3=double(i3);
i4