代码搜索:插值算法
找到约 10,000 项符合「插值算法」的源代码
代码结果 10,000
www.eeworm.com/read/432144/8624500
c 8.10 二元三点插值 slq3.c
#include "math.h"
double slq3(x,y,z,n,m,u,v)
int m,n;
double u,v,x[],y[],z[];
{ int nn,mm,ip,iq,i,j,k,l;
double b[3],h,w;
nn=3;
if (n
www.eeworm.com/read/432144/8624579
c 8.2 一元三点插值 lg3.c
#include "math.h"
double lg3(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/428933/8827974
mht 第2节 拉格朗日插值多项式.mht
From:
Subject: =?gb2312?B?tdq2/r3aIMCtuPHAysjVsuXWtbbgz+7Kvaql?=
Date: Sun, 8 Mar 2009 09:40:40 +0800
MIME-Version: 1.0
Content-Type: text/html;
charset="gb231
www.eeworm.com/read/375259/9366989
pdf anudem ----专业化数字高程模型插值软件e.pdf
www.eeworm.com/read/396169/8121761
vb 请选择插值多项式的阶数.designer.vb
_
Partial Class 请选择插值多项式的阶数
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
www.eeworm.com/read/401856/11546797
pdf 医学图像三维重建的插值方法研究.pdf
www.eeworm.com/read/398398/7990397
txt 高超音速飞机模型的仿真研究.txt
采用MATLAB插值函数和S函数分别估算和建立高超音速飞机的气动参数及其六自由度
的微分方程组,并在不同高度和速度下计算飞行的平衡点,然后通过比较平衡条件与约束条件,
近似得到了整个飞行过程的飞行包线。
www.eeworm.com/read/189078/8490823
txt 二值图像边缘提取算法c语言实现.txt
二值图像边缘提取算法C语言实现[原创]
定义:每个像素的取值均为0或1,称这样的图像为二值图像。
算法:检查所有像素,若该像素为物体上与背景接触的像素(四连通像素中既有背景像素又有物体像素),则为边界。
程序:
#define M 30
#define N 20
void edge(int image[M][N],int bianyuan[M][N])
{
www.eeworm.com/read/452362/7441558