代码搜索:difference

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

代码结果 3,389
www.eeworm.com/read/453433/7420799

m fig4_49.m

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%% %%%% Fig 4.49 %%%% Aperture weighting of J1(0.586p) p =0:pi %%%% Xiaomin Lu 11-2-98 %%%% Updated by K. Bell 10/2/00, 9/3
www.eeworm.com/read/450554/7481586

txt 怎样编制黑白棋(4).txt

怎样编制黑白棋(4)开局 所有的强力程序都采用了开局定式,许多顶级程序的定式大多来自IOS游戏。对于强力的程序而言,他会在每一次对局结束以后升级定式,因此,对于有自学习功能的电脑来说,用上一次击败电脑的战术对付电脑是不会管用的。另一方面,具有自学习功能的电脑的中局棋力也会越来越强,原因是电脑会通过不断升级估值函数的权重来提高棋力。TD(Temporal <mark>Difference</mark>)就是一个实 ...
www.eeworm.com/read/449168/7517375

m test_main.m

clc;clear;close all; disp('EFFICIENT 8X8 DISCRETE COSINE TRANSFORM'); disp('In order to obtain the source code please visit'); disp(' '); disp('http://www.advancedsourcecode.com/efficientdctccode.
www.eeworm.com/read/448535/7531515

m polysub.m

function p = polysub(a,b) % % Subtract the polynomials p=a-b % % a,b = polynomials % % p = difference % Copyright 1999 by Todd K. Moon k = length(b) - length(a); p = [zeros(1,k) a] - [ze
www.eeworm.com/read/438832/7725830

sh weirdvars.sh

#!/bin/bash # weirdvars.sh: echo出一些诡异变量. var="'(]\\{}\$\"" echo $var # '(]\{}$" echo "$var" # '(]\{}$" 和上一句没什么区别.Doesn't make a difference. echo IFS='\' echo $var # '(] {}$"
www.eeworm.com/read/434325/7874594

m trisys.m

function X = trisys(A,D,C,B) %--------------------------------------------------------------------------- %TRISYS Solution of a triangular linear system. % It is assumed that D and B have
www.eeworm.com/read/198172/7948878

m dirder.m

function z = dirder(x,w,f,f0) % Finite difference directional derivative % Approximate f'(x) w % % C. T. Kelley, November 25, 1993 % % This code comes with no guarantee or warranty of any kind. % % f
www.eeworm.com/read/195644/8136765

m dyaddownnd.m

function y = dyaddownnd(x,s) %[Y]=DYADDOWNND(X,S) %X is N-D array %S is the dimension want to down %Y is N-D array output %some difference with MATHWORKS wavelet toolbox h=size(x); h=[h(s:lengt
www.eeworm.com/read/245849/12777552

m s_history.m

function seismic=s_history(seismic,action,parameters) % Function operates on the history field of a seismic structure; displays data set history % if no output argument is given % % Written by: E. R.:
www.eeworm.com/read/245156/12814039

h g726private.h

/** * * $Log: private.h,v $ * Revision 1.4 2002/11/20 04:29:13 robertj * Included optimisations for G.711 and G.726 codecs, thanks Ted Szoczei * * Revision 1.1 2002/02/11 23:24:23 robe