代码搜索:INTERPOLATION

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

代码结果 2,917
www.eeworm.com/read/202785/15373406

m da_cut.m

% % da_cut.m % % Data cutting and interpolation % da_front; drawnow; pl=1; old_sl1_value=1; [num_points num_var]=size(data); left_point=1; right_point=num_points; text(1)=da_text2(w1,10,
www.eeworm.com/read/104297/15699669

m arithxover.m

function [c1,c2] = arithXover(p1,p2,bounds,Ops) % Arith crossover takes two parents P1,P2 and performs an interpolation % along the line formed by the two parents. % % function [c1,c2] = arithXover(p1
www.eeworm.com/read/381211/9103775

m fg_03_14.m

% fg_03_14 Interpolation via zero insertion in freq. domain. Lx=18; K=2; T=.003; Ly=500; n=0:Lx-1; x=sin(2*pi*n.^2/100); % Plot x. sp_fig(1); axis([0 .05 -1.4 1.4]); set(gca,'fontname','times'
www.eeworm.com/read/474583/6812915

m image_resize.m

function M1 = image_resize(M,p1,q1,r1) % image_resize - resize an image using bicubic interpolation % % M1 = image_resize(M,nx,ny,nz); % or % M1 = image_resize(M,newsize); % % Works for 2D, 2D
www.eeworm.com/read/474583/6812991

svn-base image_resize.m.svn-base

function M1 = image_resize(M,p1,q1,r1) % image_resize - resize an image using bicubic interpolation % % M1 = image_resize(M,nx,ny,nz); % or % M1 = image_resize(M,newsize); % % Works for 2D, 2D
www.eeworm.com/read/186120/8958740

c app.c

/*数值分析中求非线性方程组的解的*/ #include "stdio.h" #include "math.h" double max4(); /*求四个数中的最大值*/ double Gauss(); /*Gauss消去法求非线性方程组*/ double Interpolation(); /*作插值*/ double Inverse(); /
www.eeworm.com/read/381211/9103838

m fg_03_10.m

% fg_03_10: Interpolation via zero insertion in freq. domain. N=17; K=2; T=.003; n=0:N-1; x=sin(2*pi*n.^2/100); X=fft(x); Y=[X(1:(N+1)/2),zeros(1,K*N),X((N+1)/2+1:N)]; y=(K+1)*ifft(Y); % Plo