代码搜索:INTERPOLATION
找到约 2,917 项符合「INTERPOLATION」的源代码
代码结果 2,917
www.eeworm.com/read/364978/9885296
cpp interpolation1variableisometry.cpp
//Interpolation1VariableIsometry.cpp
//一元全区间等距插值
#include //输入输出流头文件
#include "Interpolation.h" //插值头文件
void main()
{
double x0(0.1), h(0.1), t, s;
double y[10] =
{
0.9
www.eeworm.com/read/364978/9885309
cpp interpolation1variablenotisometry .cpp
//Interpolation1VariableNotIsometry.cpp
//一元全区间不等距插值
#include //输入输出流头文件
#include "Interpolation.h" //插值头文件
void main()
{
double t(0.63), s;
double x[10] =
{
0.10, 0.
www.eeworm.com/read/364978/9885326
cpp interpolation2variablewholeinterval.cpp
//Interpolation2VariableWholeInterval.cpp
//二元全区间插值
#include //输入输出流头文件
#include "Interpolation.h" //插值头文件
void main()
{
int i, j;
double u, v, w;
valarray x(
www.eeworm.com/read/166305/10024724
m single_linear_interpolation.m
% linear interpolation
clc;clear all;
L=500; % length of signal
LL=L+50;
Fs=1e6; % the sample frequency in Hz
M=1000; % numbers of interpolation
D=44.923e-6; % se
www.eeworm.com/read/360732/10080586
m perform_dimreduc_interpolation.m
function A = perform_dimreduc_interpolation(pos,xy,X,options)
% full dimension
d = size(X,1);
% reduced dimension
d1= size(xy,1);
% number of points
p = size(X,2);
if size(pos,2)>1
%
www.eeworm.com/read/360732/10080647
m perform_rbf_interpolation.m
function fi = perform_rbf_interpolation(Xi,X,f)
% perform_rbf_interpolation - scattered data interpolation
%
% fi = perform_rbf_interpolation(Xi,X,f);
%
% It uses a linear spline radial bas
www.eeworm.com/read/352327/10563724
m interpolation_1d.m
N=20
rec=16;
M=10
!make
h=1.2/N;
X=my_rand(M,h);
f=[0*X(X0).^0.5]; %rand(M,1);
input_data=[X,f];
save input_data.dat -ascii -double -tabs input_data
!interpolation_1d 20 10 0 > o
www.eeworm.com/read/352327/10563731
c interpolation_1d.c
#include "utils.h"
#include "nfft.h"
#define DIRICHLET 0
#define FEJER 1
#define JACKSON2 2
#define JACKSON4 3
#define SOBOLEV 4
#define MULTIQ 5
void interpolation_1d(int N, int M, int kernel)
{
www.eeworm.com/read/352044/10586481
cpp interpolation1variableisometry.cpp
//Interpolation1VariableIsometry.cpp
//一元全区间等距插值
#include //输入输出流头文件
#include "Interpolation.h" //插值头文件
void main()
{
double x0(0.1), h(0.1), t, s;
double y[10] =
{
0.9
www.eeworm.com/read/352044/10586511
cpp interpolation1variablenotisometry .cpp
//Interpolation1VariableNotIsometry.cpp
//一元全区间不等距插值
#include //输入输出流头文件
#include "Interpolation.h" //插值头文件
void main()
{
double t(0.63), s;
double x[10] =
{
0.10, 0.