代码搜索:INTERPOLATION

找到约 2,917 项符合「INTERPOLATION」的源代码

代码结果 2,917
www.eeworm.com/read/373012/9479521

c f_interpolation.c

#define RCSID "$Id: F_Interpolation.c,v 1.6 2006/02/26 00:42:53 geuzaine Exp $" /* * Copyright (C) 1997-2006 P. Dular, C. Geuzaine * * This program is free software; you can redistribute it and/or
www.eeworm.com/read/356863/10220087

m newton_interpolation.m

function fp = newton_interpolation(x,y,p) % Script for Newton's Interpolation. % Muhammad Rafiullah Arain % Mathematics & Basic Sciences Department % NED University of Engineering & Technology - K
www.eeworm.com/read/159381/10664089

v color_interpolation.v

// Module Declaration `timescale 100ps/10ps //设置时间单位和时间精度 module color_interpolation ( //// 接口列表 interClk, interData, XMax, YMax, x, y, Blue, Green, Red, strClk, olineValid, oframeValid )
www.eeworm.com/read/421783/10699211

m interpolation_filter.m

function [ Sample_Synchronous_Period ] = Interpolation_Filter(Sample_Independence_Period) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Interpolation_Filter.m % 函数文件 % 拉格郎日立方插值滤波器 %%%%%%%%
www.eeworm.com/read/461862/7215369

m interpolation_xiuzheng.m

% function x3=interpolation_xiuzheng(x1,x2) % function varargout=interpolation(x1,x2) clc tic x1=0;x2=1; fx1=3*x1+sin(x1)-exp(x1); fx2=3*x2+sin(x2)-exp(x2); % fx1=x1^3+x1^2-3*x1-3; % fx2=x
www.eeworm.com/read/455848/7362911

m interpolation_y.m

%.....Thuc hien phep noi suy truc Y va xuat ket qua..... function output_Y = Interpolation_Y(input_Y) x_Y = 0:0.25:10; y_Y = sin(2*x_Y); xi_Y = 0:0.25:10; yi_Y = interp1(x_Y,y_Y,xi_Y); %yi_Y = s
www.eeworm.com/read/455848/7362913

m interpolation_x.m

%.....Thuc hien phep noi suy truc X va xuat ket qua..... function output_X = Interpolation_X(input_X) x_X = 0:0.25:10; y_X = sin(x_X); xi_X = 0:0.25:10; yi_X = interp1(x_X,y_X,xi_X); %yi_X = spl
www.eeworm.com/read/455111/7377970

txt newton_interpolation.txt

/* 牛顿插值算法 牛顿插值是基于下面这些的公式: f[x0,x1,...xk]=(f[x1,...xk]-f[x0,...xk-1])/(xk-x0) f[x]=f(x) f(x)=f[x0]+f[x0,x1](x-x0)+f[x0,x1,x2](x-x0)(x-x1)+...f[x0,...xn](x-x0)...(x-xn-1)+Rn(x) 前两个是均差的递推关系式,而后