代码搜索:Difference

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

代码结果 3,389
www.eeworm.com/read/452695/7436328

c program9_03.c

/* Program 9.3 Passing a Pointer to a function */ #include /* Function prototypes */ int sum(int,int); int product(int,int); int difference(int,int); int any_function(int(*pfun)(in
www.eeworm.com/read/446823/7564332

c timer.c

#include #include /*********************************************************************/ /* */ /* c
www.eeworm.com/read/442927/7641989

m gmmevaltest.m

addpath d:/users/jang/matlab/toolbox/dcpr fprintf('Traing GMM...\n'); DS=prData('iris'); gmmParam=gmmTrain(DS.input, [8, 1]); dataNum=100000; dim=length(gmmParam(1).mu); data=100*rand(dim, dat
www.eeworm.com/read/437574/7745705

m example04.m

% Small technical example. % Shows how to call for the multiresolution reconstruction of an image % after its decomposition. % disp('Small technical example.'); disp('Shows how to call for the multire
www.eeworm.com/read/434781/7801835

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/399920/7822168

cpp example_13_22.cpp

//Numeric algorithms accumulate and adjacent_difference #include #include #include #include #include #include using namespa
www.eeworm.com/read/399134/7887039

c isr.c

//============================================================= // 文件名称: ISR.c // 实现功能: 读取AD的结果,进行DA,输出 // 完成日期: 2003,5,28 //============================================================== #in
www.eeworm.com/read/198172/7948869

m diffjac.m

function [l, u] =diffjac(x, f, f0) % compute a forward difference Jacobian f'(x), return lu factors % % uses dirder.m to compute the columns % % C. T. Kelley, November 25, 1993 % % This code comes wi
www.eeworm.com/read/333003/12711580

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/332926/12716931

c 2.41.c

◆2.41② 试以循环链表作稀疏多项式的存储结构, 编写求其导函数的算法,要求利用原多项式中的结 点空间存放其导函数(多项式),同时释放所有无 用(被删)结点。 实现下列函数: void <mark>Difference</mark>(LinkedPoly &pa); /* 稀疏多项式 pa 以循环链表作存储结构, */ /* 将此链表修改成它的导函数,并释放无用结点 */ 链式多项式的类 ...