代码搜索:difference
找到约 3,389 项符合「difference」的源代码
代码结果 3,389
www.eeworm.com/read/236649/14006044
c alg32.c
#include
#include
#include
#include
/*
* generates:
original array values: 3 5 8 13 21
transform each element by doubling: 6 10 16 26 42
tr
www.eeworm.com/read/236644/14006872
c alg32.c
#include
#include
#include
#include
/*
* generates:
original array values: 3 5 8 13 21
transform each element by doubling: 6 10 16 26 42
tr
www.eeworm.com/read/235612/14061008
m fbdiff.m
%first break vs shot & rec location along the survey line
nshots=input('What is the number of shots? ');
nrecs=input('What is the number of receivers? ');
figure('menubar','none');
hold;
for i=1:ns
www.eeworm.com/read/235612/14061053
m disprectime.m
function disprectime(rtrange,rt1,mint);
% Display of the reciprocal time for shot pair(s)
f=gcf;
diffmat=refdata('get','diffmat');
nshots=refdata('get','nshots');
absdiffmat=abs(diffmat);
% All the
www.eeworm.com/read/235612/14061078
m fbdiffup.m
%first break vs shot & rec location along the survey line
nshots=input('What is the number of shots? ');
nrecs=input('What is the number of receivers? ');
%figure;
%hold;
%for i=1:nshots;
% plot(r
www.eeworm.com/read/235539/14064574
cpp algo2-9.cpp
// algo2-9.cpp 尽量采用bo2-31.cpp中的基本操作实现算法2.17的功能
#include"c1.h"
#define N 2
typedef char ElemType;
#include"c2-3.h"
#include"func2-2.cpp"
#include"bo2-31.cpp"
#include"func2-3.cpp" // 包括e
www.eeworm.com/read/235539/14064615
cpp algo2-8.cpp
// algo2-8.cpp 实现算法2.17的程序
#include"c1.h"
#define N 2
typedef char ElemType;
#include"c2-3.h"
#include"func2-2.cpp"
#include"bo2-32.cpp"
#include"func2-3.cpp" // 包括equal()、comp()、print(
www.eeworm.com/read/132772/14073941
c exp3c5x_6.c
/*****************************************************************
* exp3c5x_6.c - C program used in Section 3.7.4, problem 1
*****************************************************************/
#
www.eeworm.com/read/132772/14073955
c exp3c5x_3.c
/*****************************************************************
* exp3c5x_3.c - C program for adding a series of numbers
* for CCS experiments in Section 3.7.3.3
****************
www.eeworm.com/read/204914/15331541
c timezone.c
#include
#include
void main(void)
{
tzset();
printf("Difference between local and GMT is %d hours\n",
timezone / 3600);
}