代码搜索:interp
找到约 3,295 项符合「interp」的源代码
代码结果 3,295
www.eeworm.com/read/353896/10406837
m interp.m
function yi=interp(x,y,xi,method)
% 一维非单调数据插值
% 用法参考interp1,唯一区别是interp不要求节点是单调的
% L.J.HU 4-15-1999
x=x(:);y=y(:);
z=[x,y];
z=sortrows(z);
yi=interp1(z(:,1),z(:,2),xi,method);
www.eeworm.com/read/161453/10410049
c interp.c
www.eeworm.com/read/424281/10468056
c interp.c
#include
#include
#include
#include
#include
int
main (void)
{
int i;
double xi, yi, x[10], y[10];
printf ("#m=0,S=2\n");
www.eeworm.com/read/424281/10468464
texi interp.texi
@cindex interpolation
@cindex spline
This chapter describes functions for performing interpolation. The
library provides a variety of interpolation methods, including Cubic
splines and Akima splines
www.eeworm.com/read/424281/10468979
c interp.c
/* interpolation/interp.c
*
* Copyright (C) 2007 Brian Gough
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
*
* This program is free software; you can redistribute it and/or modify
www.eeworm.com/read/278154/10562587
c interp.c
void interp(double **uf, double **uc, int nf)
{
int ic,iif,jc,jf,nc;
nc=nf/2+1;
for (jc=1,jf=1;jc
www.eeworm.com/read/278154/10563649
c interp.c
void interp(double **uf, double **uc, int nf)
{
int ic,iif,jc,jf,nc;
nc=nf/2+1;
for (jc=1,jf=1;jc
www.eeworm.com/read/276742/10710959
c interp.c
www.eeworm.com/read/273093/10927407
m interp.m
function yi=interp(x,y,xi,method)
% 一维非单调数据插值
% 用法参考interp1,唯一区别是interp不要求节点是单调的
% L.J.HU 4-15-1999
x=x(:);y=y(:);
z=[x,y];
z=sortrows(z);
yi=interp1(z(:,1),z(:,2),xi,method);