代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/160929/10470170
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/160929/10470194
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/271693/10983542
m channelgenerator2.m
%The multipath channel matrix generator
%Using rayleighchan function in MATLAB
%chnums is the number of channel realizations
%fd is the Doppler frequency
%divn is the number of diversity branches
www.eeworm.com/read/271693/10983549
m raych2.m
%Rayleigh channel function
%ch is the CSI matrix of size 90 by chnums
%chnums is the number of channel realizations.
%fd is the doppler frequency.
%
%by Yuanye Wang
%CTIF, Aalborg University
%y
www.eeworm.com/read/460181/7256287
m up.m
function y = up(x,M)
% y = up(x,M)
% M-fold up-sampling of a 1-D signal
[r,c] = size(x);
if r > c
y = zeros(M*r,1);
else
y = zeros(1,M*c);
end
y(1:M:end) = x;
www.eeworm.com/read/460181/7256329
m up.m
function y = up(x,M)
% y = up(x,M)
% M-fold up-sampling of a 1-D signal
[r,c] = size(x);
if r > c
y = zeros(M*r,1);
else
y = zeros(1,M*c);
end
y(1:M:end) = x;
www.eeworm.com/read/460181/7256342
m up.m
function y = up(x,M)
% y = up(x,M)
% M-fold up-sampling of a 1-D signal
[r,c] = size(x);
if r > c
y = zeros(M*r,1);
else
y = zeros(1,M*c);
end
y(1:M:end) = x;
www.eeworm.com/read/439446/7708515
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/439446/7708519
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