代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/200619/15428489
m test_image.m
% test for image transformation
name = 'barb';
n = 128;
M = load_image(name, n);
% find sampling location for an image
[Y,X] = meshgrid(1:n,1:n);
pos = [X(:),Y(:)]';
% perform the tr
www.eeworm.com/read/110662/15527806
m s671.m
%
% s671.m - MATLAB script in Section 6.7.1
%
% Filter specifications
%
Fs=8000; % Sampling frequency 8 kHz
fc=800; % Passband cutoff frequency 800 Hz
fs=1600; % Stopband frequency 1.6 kHz
www.eeworm.com/read/101557/15826864
m ip_07_01.m
% MATLAB script for Illustrated Problem 1, Chapter 7.
echo on
T=1;
delta_T=T/200; % sampling interval
alpha=0.5; % roll-off factor
fc=40/T; % carrier frequen
www.eeworm.com/read/101557/15827416
m ip_06_03.m
% MATLAB script for Illustrative Problem 3, Chapter 6.
echo on
f_cutoff=2000; % the desired cut-off frequency
f_stopband=2500; % the actual stopband frequency
fs=10000; % the sampling freq
www.eeworm.com/read/288877/8596943
txt choosenfromm.m.txt
function x = ChooseNFromM(m,n)
% x = ChooseNFromM(m,n)
% Choose n distinct members from 1:m, by sampling uniformly at random without replacement
% Colin Fox, 20 Jan 2003
if m
www.eeworm.com/read/381211/9104227
m integral_t.m
function y=integral_t(x,fs)
% y=integral_t(x,fs)
%
% y =trapezoidal integration of x
% in a column vector or array of column vectors.
% fs =sampling frequency (samples/s).
%
% Note: if x is
www.eeworm.com/read/180485/9305409
m program_10_6.m
% Program 10_6
% Illustration of Interpolation Process
%
clf;
N = input('Length of input signal = ');
L = input('Up-sampling factor = ');
f1 = input('Frequency of first sinusoid = ');
f2 = inpu
www.eeworm.com/read/180485/9305435
m program_10_5.m
% Program 10_5
% Illustration of Decimation Process
%
clf;
N = input('Length of input signal = ');
M = input('Down-sampling factor = ');
f1 = input('Frequency of first sinusoid = ');
f2 = input
www.eeworm.com/read/375399/9361906
m lifting_quincunx.m
function [h0,h1] = lifting_quincunx(f, flag)
% compute the analysis filters from lifting steps based on quincunx sampling
% assume the first lifting step is from the zeroth channel to the first chan
www.eeworm.com/read/176500/9495676
m freqrespex1.m
%
% m-file to illustrate the computation of frequency response of an IIR filter
% using FFT (freqrespex1.m).
%
Fs=500; % sampling frequency
b1=[1 -1.6180 1]; b2=[]; % numerator/denominato