代码搜索:difference
找到约 3,389 项符合「difference」的源代码
代码结果 3,389
www.eeworm.com/read/282227/9113770
f90 dqli.f90
program Explicit_difference_scheme
implicit none
real,dimension(0:50,0:20)::v
integer::m,n,i,j
real::dx=0.05,dt,w
print*,'input value dt'
read*,dt
www.eeworm.com/read/182360/9206763
m secderiv.m
function d=secderiv(a)
% Second derivative of vector using 3-point central difference.
% Example: secderiv([0 1 2 3 4 3 2 1 0]) yields [ 0 0 0 0 -2 0 0 0 0]
% T. C. O'Haver, 2006.
n=length(a);
f
www.eeworm.com/read/182357/9206803
m deriv.m
function d=deriv(a)
% First derivative of vector using 2-point central difference.
% Example: deriv([1 1 1 2 3 4]) yeilds [0 0 .5 1 1 1]
% T. C. O'Haver, 1988.
n=length(a);
d(1)=a(2)-a(1);
d(n)
www.eeworm.com/read/375062/9374272
m mserror.m
function mse = MSERROR(A, B)
% The function takes two equal images and calculates the mean square
% difference inbetween the two.
% Usage: MSE = MSERROR(A, B, NSIZE);
% where A: first image
www.eeworm.com/read/169323/9865967
sh moneth0.sh
#!/bin/bash
# 是否是测试版
V_DEBUG=1
# 是否记录日志信息
F_DEBUG=0
# 监测的网络接口
interface=eth0
# 监测的时间间隔,秒计
INTERVAL=10
# 两次检测之间的所接收和传输的包数的最小差值
DIFFERENCE=5
# 监测和进程名
PRGNAME=/tcpwatch
while true; do
/bin/netstat -s
www.eeworm.com/read/169323/9865972
sh moncap.sh
#!/bin/bash
# 是否是测试版
V_DEBUG=1
# 是否记录日志信息
EXEC_PROGRAM=0
# 是否记录日志信息
F_DEBUG=1
# 监测的网络接口
interface=eth0
# 监测的时间间隔,秒计
INTERVAL=10
# 两次检测之间的所接收和传输的包数的最小差值
DIFFERENCE=500
# 监测和进程名
PRGNAME="/etc/rc.d/init.
www.eeworm.com/read/169323/9865973
sh mon_netstat.sh
#!/bin/bash
# 是否是测试版
V_DEBUG=1
# 是否记录日志信息
F_DEBUG=1
# 监测的网络接口
interface=eth0
# 监测的时间间隔,秒计
INTERVAL=100
# 两次检测之间的所接收和传输的包数的最小差值
DIFFERENCE=5
# 监测和进程名
PRGNAME=/tcpwatch
while true; do
/bin/netstat -
www.eeworm.com/read/361297/10058875
m ex031100.m
n = -5:10; x = 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
% folding property
y = fliplr(x); m = -fliplr(n)
www.eeworm.com/read/360770/10079171
m deriv.m
function dy = deriv (a,h,n,m,e,f)
%----------------------------------------------------------------------
% Usage: dy = deriv (a,h,n,m,e,f)
%
% Description: Numerically estimate the first de
www.eeworm.com/read/360387/10099156
m constants.m
function Constants
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Electromagnetic Finite-Difference Time-Domain %
% Version 1.20, Release 1 %
%