代码搜索:Difference
找到约 3,389 项符合「Difference」的源代码
代码结果 3,389
www.eeworm.com/read/317833/13495864
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/316923/13514399
c timezone.c
#include
#include
void main(void)
{
tzset();
printf("Difference between local and GMT is %d hours\n",
timezone / 3600);
}
www.eeworm.com/read/316923/13514401
c ftime.c
#include
#include
#include
void main(void)
{
struct timeb timezone;
tzset();
ftime(&timezone);
printf("Seconds since 1 January 1970 (GMT)
www.eeworm.com/read/316419/13523112
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/316419/13523123
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/316412/13523418
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 diff
www.eeworm.com/read/315631/13539372
c timezone.c
#include
#include
void main(void)
{
tzset();
printf("Difference between local and GMT is %d hours\n",
timezone / 3600);
}
www.eeworm.com/read/315631/13539374
c ftime.c
#include
#include
#include
void main(void)
{
struct timeb timezone;
tzset();
ftime(&timezone);
printf("Seconds since 1 January 1970 (GMT)
www.eeworm.com/read/308708/13695007
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)
{
www.eeworm.com/read/308708/13695016
cpp algo2-8.cpp
// algo2-8.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 difference(SLinkList space,int &S) // 算法2.1