代码搜索:interpolating
找到约 168 项符合「interpolating」的源代码
代码结果 168
www.eeworm.com/read/181714/9240388
m intpval.m
function p = intpval(x,c,t)
% Value p = P(t) of interpolating polynomial
% Version 11.12.2003. INCBOX
m = length(x); % number of interpolation points and coeffs
p = c(m) * ones(size(t));
f
www.eeworm.com/read/178375/9405920
h inter_36.h
/*
********************************************************************************
*
* GSM AMR-NB speech codec R98 Version 7.6.0 December 12, 2001
* R99 Ve
www.eeworm.com/read/458493/7295782
m demogasnewt.m
function demoGasNewt
% demoGasNewt Interpolate gasoline price data with Newton polynomials
%
% Synopsis: demoGasNewt
%
% Input: none
%
% Output: Plot of given data and interpolating fu
www.eeworm.com/read/458488/7296158
m demogasnewt.m
function demoGasNewt
% demoGasNewt Interpolate gasoline price data with Newton polynomials
%
% Synopsis: demoGasNewt
%
% Input: none
%
% Output: Plot of given data and interpolating fu
www.eeworm.com/read/449128/7517992
m newtintpoleval.m
%
% Evaluate Newton's interpolating polynomial at
% given points.
%
% function [p] = NewtIntPolEval( x, a, z )
%
% input:
% x: vector containing the
% interpolation points
%
www.eeworm.com/read/145478/12721011
h inter_36.h
/*
********************************************************************************
*
* GSM AMR-NB speech codec R98 Version 7.6.0 December 12, 2001
* R99 Ve
www.eeworm.com/read/144399/12797587
m demogasnewt.m
function demoGasNewt
% demoGasNewt Interpolate gasoline price data with Newton polynomials
%
% Synopsis: demoGasNewt
%
% Input: none
%
% Output: Plot of given data and interpolating fu
www.eeworm.com/read/244471/12861389
m snakeindex.m
function y = snakeindex(IDX)
% SNAKEINDEX Create index for adpative interpolating the snake
% y = snakeindex(IDX)
%
N = length(IDX);
y=1:0.5:N+0.5;
x=1:N;
y(2*x(IDX==0))=[];
www.eeworm.com/read/330414/12895409
h inter_36.h
/*
********************************************************************************
*
* GSM AMR-NB speech codec R98 Version 7.6.0 December 12, 2001
* R99 Ve
www.eeworm.com/read/243660/12929304
c delay.c
#define NFRAC 5
#define TRUE 1
#define FALSE 0
#define M1 -4
#define M2 3
/* five fractional delays calculated over an 8 point interpolation */
/* (-4 to 3) */
static float frac[NF