代码搜索:INTERVAL
找到约 8,094 项符合「INTERVAL」的源代码
代码结果 8,094
www.eeworm.com/read/235612/14060199
m channel_hyp.m
% CHANNEL: model a channel beneath a few layers
%
% low velocity channel beneath a v(z) medium
% Just run the script
dx=5; %cdp interval
dt=.002; %time sample rate
xmax=2500;tmax=1.0; %maximum l
www.eeworm.com/read/235612/14060926
m vave2vint.m
function vint=vave2vint(vave,t)
% vins=vave2vint(vave,t)
%
% Convert average to interval velocity
% NOTE: It is illegal for you to use this software for a purpose other
% than non-profit education or
www.eeworm.com/read/235612/14061681
m syncline.m
% SYNCLINE: model a channel beneath a few layers
%
% high velocity wedge
% Just run the script
dx=10; %cdp interval
xmax=2500;zmax=1000; %maximum line length and maximum depth
x=0:dx:xmax; % x c
www.eeworm.com/read/234955/14090704
h datatypes.h
/* datatypes.h */
#ifndef DATATYPES_H
#define DATATYPES_H
typedef struct {
UInteger32 seconds;
Integer32 nanoseconds;
} TimeRepresentation;
typedef struct {
Integer16 interval;
Integer16
www.eeworm.com/read/109665/15552571
ssf remote_reconfiguration.ssf
SIMULATOR_SETTINGS
{
FOCUS_ENTITY_NAME = |remote_reconfiguration;
ESTIMATE_POWER_CONSUMPTION = OFF;
GLITCH_INTERVAL = 1ns;
GLITCH_DETECTION = OFF;
SIMULATION_COVERAGE = ON;
CHECK_OUTPUTS
www.eeworm.com/read/108859/15573963
m convnum.m
function Y =convnum(x,y,dt,ty)
% CONVNUM Numerical convolution.
%
% Z = CONVNUM(X,Y,DT,TY) numerically convolves vectors X and Y
% DT = sampling interval (DEFAULT: DT = 1)
% TY = Numerical Inte
www.eeworm.com/read/201589/5057539
m burstnoise.m
function N=BurstNoise(N_Interval,N_Length,Sig_Length)
%本函数完成生成突发噪声的功能
%本函数三个输入参数分别对应突发间隔、突发长度、信号矢量长度,输出为产生的突发噪声
%噪声
N=zeros(1,Sig_Length);
for i=1:N_Interval:Sig_Length%按突发间隔将噪声分段
start_poi