代码搜索:difference
找到约 3,389 项符合「difference」的源代码
代码结果 3,389
www.eeworm.com/read/251523/12339868
m second_order_lp.m
function [b, a] = second_order_LP(fc, fs, d)
%SECOND_ORDER_LP - Second-Order IIR Butterworth Low-Pass Filter Design Routine
%
% usage: [b, a] = second_order_LP(fc, fs, d)
%
%
www.eeworm.com/read/251523/12339908
m first_order_hp.m
function [b, a] = first_order_HP(fc, fs)
%FIRST_ORDER_HP - First-Order IIR Butterworth High-Pass Filter Design Routine
%
% usage: [b, a] = first_order_HP(fc, fs)
%
% b = Two c
www.eeworm.com/read/250804/12383982
m contents.m
% CREWES finite difference seismic modelling
% Acoustic finite difference modelling toolbox
%
% Sample scripts
% HIGHV_WEDGE ... model an anticline beneath a high velocity wedge
% VZANTICLINE ...
www.eeworm.com/read/130817/14173465
m func7p2.m
%func7p2.m计算机辅助求解
%(1)
s=-2;f=-3;tol=0.01;
difference=1
while(abs(difference)>tol)
if(sub7p2((s+f)/2)>0)
f=(s+f)/2;
else
s=(s+f)/2;
end
difference=sub7p2((s+f
www.eeworm.com/read/130817/14173532
m func7p1.m
%func7p1.m二分法解方程
%(1)
s=1;f=3;tol=0.01;i=0
difference=1
while(abs(difference)>tol)
if(sub7p11((s+f)/2)>0)
f=(s+f)/2;
else
s=(s+f)/2;
end
difference=sub7p11((s
www.eeworm.com/read/130817/14173696
asv func7p2.asv
s=10;f=8;tol=0.01;
difference=1
while(abs(difference)>tol)
if(sub7p2((s+f)/2)>0)
f=(s+f)/2;
else
s=(s+f)/2;
end
difference=sub7p2((s+f)/2);
end
disp(differenc
www.eeworm.com/read/130817/14173697
asv func7p1.asv
%(1)
s=1;f=3;tol=0.01;i=0
difference=1
while(abs(difference)>tol)
if(sub7p11((s+f)/2)>0)
f=(s+f)/2;
else
s=(s+f)/2;
end
difference=sub7p11((s+f)/2);
i=i+1
www.eeworm.com/read/129214/14257763
c adaptive_filter.c
/*****************************************************************************/
/* */
/* FILENAME
www.eeworm.com/read/125782/14463903
c firstlast.c
/*
* This test was written by Alexander V. Lukyanov to demonstrate difference
* between ncurses 4.1 and SVR4 curses
*
* $Id: firstlast.c,v 1.3 2001/09/15 21:46:34 tom Exp $
*/
#include
www.eeworm.com/read/123658/14617332
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.