代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/330869/12863420
m spec4.m
function [tfd, t, f] = spec4(x, fs, w)
% spec4 -- Compute samples of the type IV spectrogram.
%
% Usage
% [tfd, t, f] = spec4(x, fs, w)
%
% Inputs
% x signal vector
% fs sampling fre
www.eeworm.com/read/328545/13021395
m fir digital filter(with chebyshev algorithm).m
clear all;
rp=0.25;% Passband ripple
rs=50; %Stopband ripple
Fs=200; % Sampling frequency
wp1=0.2;%normalized passband frequency
ws1=0.3;%normalized stopband frequency
wp=Fs/2*wp1;%passband fre
www.eeworm.com/read/321160/13411484
m ip_01_04.m
% MATLAB script for Illustrative Problem 4, Chapter 1.
echo on
n=[-20:1:20];
% Fourier series coefficients of x(t) vector
x=.5*(sinc(n/2)).^2;
% sampling interval
ts=1/40;
% Time vector
t=[-.5:ts:1.5
www.eeworm.com/read/488224/6498583
m program_13_4.m
% Program 13_4
% Effect of Down-Sampling in the Frequency Domain
% Use fir2 to create a bandlimited input sequence
freq = [0 0.42 0.48 1];
mag = [0 1 0 0];
x = fir2(101, freq, mag);
% Evaluate a
www.eeworm.com/read/158463/11612869
m ip_01_04.m
% MATLAB script for Illustrative Problem 4, Chapter 1.
echo on
n=[-20:1:20];
% Fourier series coefficients of x(t) vector
x=.5*(sinc(n/2)).^2;
% sampling interval
ts=1/40;
% Time vector
t=[-.5:ts:1.5
www.eeworm.com/read/346459/11743319
m rdivide.m
function c = rdivide(a,b)
% overloading of operator ./
% $Id: rdivide.m 83 2005-08-19 11:05:34Z mairas $
if isa(a,'signal') & isa(b,'signal')
if a.fs ~= b.fs
error('sampling frequencies do n
www.eeworm.com/read/254742/12121064
m program_13_4.m
% Program 13_4
% Effect of Down-Sampling in the Frequency Domain
% Use fir2 to create a bandlimited input sequence
freq = [0 0.42 0.48 1];
mag = [0 1 0 0];
x = fir2(101, freq, mag);
% Evaluate a
www.eeworm.com/read/254092/12162714
html group__remote__samp__methods.html
WinPcap: Sampling methods defined in the pcap_se
www.eeworm.com/read/339954/12191063
m suoxiang.m
close all;
clear all;
%**** Initialize the Varibales ******
fs = 12e6; %sampling rate
ts = 1/fs; %time delay
num = 2.5e6;
SNR = -15;
real_fc = 3563000; % real signal frequency
data = cos(2*pi*
www.eeworm.com/read/231449/14233615
m program_10_4.m
% Program 10_4
% Effect of Down-sampling in the Frequency Domain
% Use fir2 to create a bandlimited input sequence
freq = [0 0.42 0.48 1];
mag = [0 1 0 0];
x = fir2(101, freq, mag);
% Evaluate a