代码搜索:插值算法
找到约 10,000 项符合「插值算法」的源代码
代码结果 10,000
www.eeworm.com/read/104456/15691882
bas inedlagrnmainmodule.bas
Attribute VB_Name = "MainModule"
Sub Main()
Dim t As Double, z As Double, x0 As Double, h As Double, y(10) As Double
Dim s As String
' 第一个结点
x0 = 0.1
' 步长
www.eeworm.com/read/343788/11927985
pdf ofdm系统中一种信道估计频域插值算法.pdf
www.eeworm.com/read/216047/15028147
pdf 基于插值法的移动ad hoc网络功率路由算法.pdf
www.eeworm.com/read/432144/8624575
c 8.3 连分式插值 pqs.c
#include "math.h"
double pqs(x,y,n,t)
int n;
double t,x[],y[];
{ int i,j,k,m,l;
double z,h,b[8];
z=0.0;
if (n
www.eeworm.com/read/386410/8750419
doc 多项式插值震荡现象.doc
www.eeworm.com/read/284829/8889250
kdh 全数字调制插值滤波.kdh
www.eeworm.com/read/384158/8893544
doc 拉格朗日插值法.doc
#include "stdio.h"
#include "conio.h"
#define N 4
main()
{
double x[N+1] = {0.4, 0.55, 0.8, 0.9, 1};
double y[N+1] = {0.41075, 0.57815, 0.88811, 1.02652, 1.17520};
double varx = 0.5
www.eeworm.com/read/383218/8960447
cpp 拉格朗日插值法.cpp
#include
void main()
{int N,i,j;
float x[10],y[10],l[10],x0,y0=0,fz,fm;
printf("input N:");
scanf("%d",&N);
printf("input x[i] i=0.....N-1:\n");
for(i=0;i
www.eeworm.com/read/381765/9072412
cpp 拉格朗日插值法.cpp
#include
void main()
{int N,i,j;
float x[10],y[10],l[10],x0,y0=0,fz,fm;
printf("input N:");
scanf("%d",&N);
printf("input x[i] i=0.....N-1:\n");
for(i=0;i
www.eeworm.com/read/377674/9266879