代码搜索:difference

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

代码结果 3,389
www.eeworm.com/read/313151/13595129

java sets17.java

// generics/Sets17.java // TIJ4 Chapter Generics, Exercise 17, page 645 /* Study the JDK documentation for EnumSet. You'll see that there's a * clone() method defined. However, you cannot clone()
www.eeworm.com/read/303441/13816023

m mfcc1.m

function [ccc] = mfcc(x) %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % function ccc=mfcc(x); %对输入的语音序列x进行MFCC参数的提取,返回MFCC参数和一阶 %差分MFCC参数,Mel滤波器的阶数为24 %fft变换的长度为256,采样频率为8000Hz,对x 256点分为
www.eeworm.com/read/141300/5771505

c diotemp.c

/********** Copyright 1990 Regents of the University of California. All rights reserved. Author: 1985 Thomas L. Quarles Modified: 2000 AlansFixes Modified by Dietmar Warning 2003 and Paolo Nenzi 2003
www.eeworm.com/read/139332/5800903

hpp binary_search.hpp

// Copyright (c) 2000 David Abrahams. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) //
www.eeworm.com/read/131315/5936422

h newsgas.h

/* In Sony versions before 3.0, use the GNU Assembler, because the system's assembler has no way to assemble the difference of two labels for the displacement in a switch-dispatch instruction.
www.eeworm.com/read/126765/6012166

c difftime.c

/* difftime.c - difftime file for time */ /* Copyright 1992-1993 Wind River Systems, Inc. */ /* modification history -------------------- 01d,04oct01,dcb Fix SPR 7191. Cast time1 and time2 before
www.eeworm.com/read/123117/6062799

java finddups2.java

import java.util.*; public class FindDups2 { public static void main(String args[]) { Set uniques = new HashSet(); Set dups = new HashSet(); for (int i=0; i
www.eeworm.com/read/101066/6256447

c difftime.c

/* difftime.c - difftime file for time */ /* Copyright 1992-1993 Wind River Systems, Inc. */ /* modification history -------------------- 01d,04oct01,dcb Fix SPR 7191. Cast time1 and time2 before
www.eeworm.com/read/100285/6271819

c c_keywords.c

/*------------------------------------------------------------------------- * * keywords.c * lexical token lookup for reserved words in postgres embedded SQL * *--------------------------------
www.eeworm.com/read/492812/6409771

c sinegende.c

//SinegenDE.c Generates a sinewave using a difference equation short y[3] = {0,16384,0}; //y(1) = sinwT const short A = 0; //A = 2*coswT * 2^14 int n = 2;