代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/186987/8886059
m p10_1.m
% Program 10_1
% Illustration of Up-Sampling by an Integer Factor
%
clf;
n = 0:50;
x = sin(2*pi*0.12*n);
y = zeros(1, 3*length(x));
y([1: 3: length(y)]) = x;
subplot(2,1,1)
stem(n,x);
title('Input Seq
www.eeworm.com/read/364970/9885648
m guassionpulse.m
function cp0701_shape_factor_variation(alphamin,alphastep,N_alphavalues)
alphamin=0.414e-9;
alphastep=0.1e-9;
N_alphavalues=7;
A=1;
smp=1024;
Tmin=-4e-9;
Tmax=4e-9;
alpha=alphamin;
t=linspace
www.eeworm.com/read/168118/9937660
m sprat.m
function q=sprat(A1,A2,f,t1,t2,fsmo)
% q=sprat(A1,A2,f,t1,t2,fsmo)
%
% SPRAT applies the spectral ratio method to estimate an apparent
% interval attenuation factor, q, between the traces (wavelets)
www.eeworm.com/read/163324/10166004
m c12l2.m
count=0;
%H=.01
%Integration interval increased by factor of 100 to get acceptable run time
H=1;
A=2.0926e7;
GM=1.4077e16;
GAM=45.;
ALTNM=0.;
V=24000.;
ANGDEG=0.;
ANG=ANGDEG/57.3;
VRX=V*cos
www.eeworm.com/read/163324/10166038
m c12l3.m
count=0;
%H=.01;
%Integration interval increased by factor of 1000 to get acceptable run time
H=10.;
A=2.0926e7;
GM=1.4077e16;
GAM=0.;
ALTNM=1000.;
ALT=ALTNM*6076.;
XLAM=1.;
V=sqrt(GM*XLAM/(
www.eeworm.com/read/160929/10469431
m p10_5.m
% Program P10_5
% Illustration of Decimation Process
%
clf;
M = input('Down-sampling factor = ');
n = 0:99;
x = sin(2*pi*0.043*n) + sin(2*pi*0.031*n);
y = decimate(x,M,'fir');
subplot(2,1,1);
stem(n,x
www.eeworm.com/read/160929/10469443
m p10_1.m
% Program 10_1
% Illustration of Up-Sampling by an Integer Factor
%
clf;
n = 0:50;
x = sin(2*pi*0.12*n);
y = zeros(1, 3*length(x));
y([1: 3: length(y)]) = x;
subplot(2,1,1)
stem(n,x);
title('Input Seq
www.eeworm.com/read/160929/10469769
m p10_2.m
% Program P10_2
% Illustration of Down-Sampling by an Integer Factor
%
clf;
n = 0: 49;
m = 0: 50*3 - 1;
x = sin(2*pi*0.042*m);
y = x([1 : 3 : length(x)]);
subplot(2,1,1)
stem(n, x(1:50)); axi
www.eeworm.com/read/160929/10470185
m p10_5.m
% Program P10_5
% Illustration of Decimation Process
%
clf;
M = input('Down-sampling factor = ');
n = 0:99;
x = sin(2*pi*0.043*n) + sin(2*pi*0.031*n);
y = decimate(x,M,'fir');
subplot(2,1,1);
stem(n,x
www.eeworm.com/read/160929/10470198
m p10_1.m
% Program 10_1
% Illustration of Up-Sampling by an Integer Factor
%
clf;
n = 0:50;
x = sin(2*pi*0.12*n);
y = zeros(1, 3*length(x));
y([1: 3: length(y)]) = x;
subplot(2,1,1)
stem(n,x);
title('Input Seq