代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/378914/2679306
m p10_4.m
% Program P10_4
% Effect of Down-sampling in the Frequency Domain
% Use fir2 to create a bandlimited input sequence
clf;
freq = [0 0.42 0.48 1]; mag = [0 1 0 0];
x = fir2(101, freq, mag);
% Eval
www.eeworm.com/read/378914/2679354
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('Amplit
www.eeworm.com/read/378914/2679379
m p10_4.m
% Program P10_4
% Effect of Down-sampling in the Frequency Domain
% Use fir2 to create a bandlimited input sequence
clf;
freq = [0 0.42 0.48 1]; mag = [0 1 0 0];
x = fir2(101, freq, mag);
% Evaluate a
www.eeworm.com/read/370636/9589420
m build_alpert_matrix_2d.m
function V = build_alpert_matrix_2d(pos,k, options)
% build_alpert_matrix_2d - build 2D Alpert basis adapted to the sampling provided.
%
% V = build_alpert_matrix_2d(pos,k);
%
% The basis i
www.eeworm.com/read/248284/12585655
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('Amplit
www.eeworm.com/read/200619/15428485
m build_alpert_matrix_2d.m
function V = build_alpert_matrix_2d(pos,k, options)
% build_alpert_matrix_2d - build 2D Alpert basis adapted to the sampling provided.
%
% V = build_alpert_matrix_2d(pos,k);
%
% The basis i
www.eeworm.com/read/388457/8607963
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/388457/8608151
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('时间, msec');ylabel('振幅');
t
www.eeworm.com/read/388457/8608158
asv p5_1.asv
% 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('时间, msec');ylabel('振幅');
t
www.eeworm.com/read/387887/8649403
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);