代码搜索:interp
找到约 3,295 项符合「interp」的源代码
代码结果 3,295
www.eeworm.com/read/256872/11967024
interp
Interpretation rules:
Text is, by default, interpreted. The following chart shows what sections
of preprocessor directives are not interpreted (i.e. no macro interpretation,
no preprocessor line inte
www.eeworm.com/read/414769/11102610
for interp.for
SUBROUTINE interp(uf,uc,nf)
INTEGER nf
DOUBLE PRECISION uc(nf/2+1,nf/2+1),uf(nf,nf)
INTEGER ic,if,jc,jf,nc
nc=nf/2+1
do 12 jc=1,nc
jf=2*jc-1
www.eeworm.com/read/126084/14446445
txt interp_interp21_sine.txt
-0.001615738530 0.000000000000
-0.001737848973 0.000000000000
-0.002629256721 0.000000000000
-0.003781700685 0.000000000000
-0.005231974923 0.000000000000
-0.007013736009 0.000000000000
-0
www.eeworm.com/read/126084/14446466
txt interp_interp25_sine.txt
-0.000942674900 0.000000000000
-0.001014865475 0.000000000000
-0.001539194025 0.000000000000
-0.002221254450 0.000000000000
-0.003086372375 0.000000000000
-0.004159798450 0.000000000000
-0
www.eeworm.com/read/292392/8359273
c interp.c
/*********************** interp.c **************************************
3-D Reconstruction of Medical Images
Three Dimensional Reconstruction Of Medical
Images from Serial Slices - CT,
www.eeworm.com/read/291895/8389193
c interp.c
/*****************************************************************************
*
* Name: interp.c
*
* Synopsis: Interpolates a signal.
*
* Description: See interp.h.
*
* by Grant R. Griffin
*
www.eeworm.com/read/291895/8389199
h interp.h
/****************************************************************************
*
* Name: interp.h
*
* Synopsis:
*
* Interpolates a real or complex signal. For more information, about
* inte
www.eeworm.com/read/291235/8433150
cpp interp.cpp
#include "nr.h"
void NR::interp(Mat_O_DP &uf, Mat_I_DP &uc)
{
int ic,iif,jc,jf,nc;
int nf=uf.nrows();
nc=nf/2+1;
for (jc=0;jc
www.eeworm.com/read/187102/8856185
test interp.test
#! /bin/sh
# Test to make sure variable interpolation works.
. $srcdir/defs || exit 1
cat >> configure.in Makefile.am
www.eeworm.com/read/184067/9123624
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);