代码搜索:Difference
找到约 3,389 项符合「Difference」的源代码
代码结果 3,389
www.eeworm.com/read/259722/11771515
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/259674/11774015
m checkcorrelation.m
clear all;
fid = fopen('coeffReal.dat');
[realCoeff, count] = fscanf(fid, '%f');
fclose(fid);
fid = fopen('coeffImag.dat');
[imagCoeff, count] = fscanf(fid, '%f');
fclose(fid);
br
www.eeworm.com/read/156653/11786339
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/156364/11808758
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/156224/11817739
cpp guess2.cpp
//-< GUESS.CPP >-----------------------------------------------------*--------*
// FastDB Version 1.0 (c) 1999 GARRET * ? *
// (Main Memory Database Management Sy
www.eeworm.com/read/156224/11818616
cpp guess.cpp
//-< GUESS.CPP >-----------------------------------------------------*--------*
// FastDB Version 1.0 (c) 1999 GARRET * ? *
// (Main Memory Database Management Sy
www.eeworm.com/read/156049/11832742
java webcamcapture.java
import java.io.*;
//import java.lang.*;
import java.util.*;
import javax.media.*;
import javax.media.util.*;
import javax.media.control.*;
import javax.media.format.*;
import javax.media.protoc
www.eeworm.com/read/155858/11843106
cpp 4elist0402.cpp
// Listing 4.2 - demonstrates subtraction and
// integer overflow
#include
int main()
{
using std::cout;
using std::endl;
unsigned int difference;
unsigned int bigNumber = 1
www.eeworm.com/read/155568/11863178
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/344239/11895881
java containermethoddifferences.java
//: net/mindview/util/ContainerMethodDifferences.java
package net.mindview.util;
import java.lang.reflect.*;
import java.util.*;
public class ContainerMethodDifferences {
static Set m