代码搜索:Difference
找到约 3,389 项符合「Difference」的源代码
代码结果 3,389
www.eeworm.com/read/329948/12924956
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/243661/12928757
c difmag.c
/***********************************************************************
*
* DIFMAG Version 49
*
**********************************************************************
*
* Compute Average Magni
www.eeworm.com/read/243369/12945311
cpp guess2.cpp
//-< GUESS.CPP >-----------------------------------------------------*--------*
// FastDB Version 1.0 (c) 1999 GARRET * ? *
// (Main Memory Database Management Syst
www.eeworm.com/read/243369/12945957
cpp guess.cpp
//-< GUESS.CPP >-----------------------------------------------------*--------*
// FastDB Version 1.0 (c) 1999 GARRET * ? *
// (Main Memory Database Management Syst
www.eeworm.com/read/329331/12960711
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/141692/12991088
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/141644/12992715
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/141644/12992754
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
www.eeworm.com/read/141545/13003771
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/141545/13003852
c timezone.c
#include
#include
void main(void)
{
tzset();
printf("Difference between local and GMT is %d hours\n",
timezone / 3600);
}