代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/448886/1683459
m p5_1.m
% Program P5_1
% Illustration of the Sampling Process
% in the Time-Domain
clf;
t = 0:0.0005:1;
f = 13;
xa = cos(2*pi*f*t);
subplot(2,1,1)
plot(t,xa);grid
xlabel('Time, msec');ylabel('Amplitude');
ti
www.eeworm.com/read/448886/1683485
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);
www.eeworm.com/read/448886/1683561
m p10_3.m
% Program P10_3
% Effect of Up-sampling in the Frequency Domain
% Use fir2 to create a bandlimited input sequence
freq = [0 0.45 0.5 1];
mag = [0 1 0 0];
x = fir2(99, freq, mag);
% Evaluate and plot t
www.eeworm.com/read/448886/1683606
m p5_1.m
% Program P5_1
% Illustration of the Sampling Process
% in the Time-Domain
clf;
t = 0:0.0005:1;
f = 13;
xa = cos(2*pi*f*t);
subplot(2,1,1)
plot(t,xa);grid
xlabel('Time, msec');ylabel('Amplitude');
ti
www.eeworm.com/read/419723/2073644
def hssi.def
LIBRARY HSSIWave
EXPORTS
get_CODEC_SAMPLING_RATE
get_DMA_Buffer_Address
get_DPTR
get_DSAR
get_DDAR
get_DTCR
module_init
module_deinit
codec_init
module_txstart
module_
www.eeworm.com/read/378914/2679236
m p10_3.m
% Program P10_3
% Effect of Up-sampling in the Frequency Domain
% Use fir2 to create a bandlimited input sequence
freq = [0 0.45 0.5 1];
mag = [0 1 0 0];
x = fir2(99, freq, mag);
% Evaluate and plot t
www.eeworm.com/read/378914/2679281
m p5_1.m
% Program P5_1
% Illustration of the Sampling Process
% in the Time-Domain
clf;
t = 0:0.0005:1;
f = 13;
xa = cos(2*pi*f*t);
subplot(2,1,1)
plot(t,xa);grid
xlabel('Time, msec');ylabel('Amplitude');
ti
www.eeworm.com/read/378914/2679307
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);
www.eeworm.com/read/378914/2679383
m p10_3.m
% Program P10_3
% Effect of Up-sampling in the Frequency Domain
% Use fir2 to create a bandlimited input sequence
freq = [0 0.45 0.5 1];
mag = [0 1 0 0];
x = fir2(99, freq, mag);
% Evaluate and plot t
www.eeworm.com/read/378914/2679429
m p5_1.m
% Program P5_1
% Illustration of the Sampling Process
% in the Time-Domain
clf;
t = 0:0.0005:1;
f = 13;
xa = cos(2*pi*f*t);
subplot(2,1,1)
plot(t,xa);grid
xlabel('Time, msec');ylabel('Amplitude');
ti