代码搜索:Difference

找到约 3,389 项符合「Difference」的源代码

代码结果 3,389
www.eeworm.com/read/166306/10024683

m diff.m

function X = diff(X,order,dim) %1.数值差分 % 对向量n维X,diff(X)返回[X(2)-X(1) X(3)-X(2) ... X(n)-X(n-1)] % 例 x=[1 3 8];diff(x) % %2.符号导函数 % diff(s)符号表达式s的导数. % diff(s,v)符号表达式s关于变量v的导数.
www.eeworm.com/read/166055/10038048

java countdown.java

//******************************************************************** // Countdown.java Author: Lewis/Loftus // // Demonstrates the difference between print and println. //***************
www.eeworm.com/read/166053/10039016

c algo2-9.c

/* algo2-9.c 尽量采用bo2-32.c中的基本操作实现算法2.17的功能 */ #include"c1.h" #define N 2 typedef char ElemType; #include"c2-3.h" #include"bo2-3.c" #include"bo2-32.c" void visit(ElemType c) { pr
www.eeworm.com/read/166053/10039029

c algo2-8.c

/* algo2-8.c 实现算法2.17的程序 */ #include"c1.h" #define N 2 typedef char ElemType; #include"c2-3.h" #include"bo2-3.c" #include"bo2-32.c" void difference(SLinkList space,int *S) /* 算法2.17 *
www.eeworm.com/read/361297/10058880

m ex031000.m

n = -5:10; x = rand(1,length(n)) + j*rand(1,length(n)); k = -100:100; w = (pi/100)*k; % frequency between -pi and +pi X = x * (exp(-j*pi/100)).^(n'*k); % DTFT of x % conjugation property y =
www.eeworm.com/read/360387/10099168

m blochdiff.m

function D=BlochDiff(M,n,d,f) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Electromagnetic Finite-Difference Time-Domain % % Version 1.20, Release 1 % %
www.eeworm.com/read/163777/10145892

m ex031000.m

n = -5:10; x = rand(1,length(n)) + j*rand(1,length(n)); k = -100:100; w = (pi/100)*k; % frequency between -pi and +pi X = x * (exp(-j*pi/100)).^(n'*k); % DTFT of x % conjugation property
www.eeworm.com/read/358827/10178448

m piecelin.m

function v = piecelin(x,y,u) %PIECELIN Piecewise linear interpolation. % v = piecelin(x,y,u) finds the piecewise linear L(x) % with L(x(j)) = y(j) and returns v(k) = L(u(k)). % First divided
www.eeworm.com/read/358694/10181737

m diff.m

function X = diff(X,order,dim) %1.数值差分 % 对向量n维X,diff(X)返回[X(2)-X(1) X(3)-X(2) ... X(n)-X(n-1)] % 例 x=[1 3 8];diff(x) % %2.符号导函数 % diff(s)符号表达式s的导数. % diff(s,v)符号表达式s关于变量v的导数.
www.eeworm.com/read/425971/10299405

cpp algo2-9.cpp

// algo2-9.cpp 尽量采用bo2-32.cpp中的基本操作实现算法2.17的功能 #include"c1.h" #define N 2 typedef char ElemType; #include"c2-3.h" #include"bo2-3.cpp" #include"bo2-32.cpp" void visit(ElemType c) {