代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/300562/13905621
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/132953/14065240
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/203890/15349883
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/385468/8803805
txt description.txt
Description MATLAB implementation of restricted sampling from Gaussian distribution
Objective sample x (column vector) from N(x_mu, x_var), restricted in
x_min=x=x_max.
input x_mu, x_var the p
www.eeworm.com/read/180485/9305466
m program_10_3.m
% Program 10_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 p
www.eeworm.com/read/167781/9952822
m program_10_3.m
% Program 10_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 p
www.eeworm.com/read/165851/10049059
m program_10_3.m
% Program 10_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 p
www.eeworm.com/read/360732/10080610
m test_nearest_neighboors.m
% test for computations of nn
name = 'swissroll';
n = 3000;
options.sampling = 'rand';
[X,col] = load_points_set( name, n, options );
nbr_nn = 50;
options.use_nntools = 0;
[D1,nn_list1] = c
www.eeworm.com/read/164099/10129306
m c10ex1.m
% Plots of errors in computing the DFT - Example 10-1
%
clf
T = input('Enter the time window width ');
Tss = input('Enter the largest time sampling interval ');
for k = 1:3
k_even = 2*k;
k_odd = 2*k-1
www.eeworm.com/read/357506/10208347
m program_13_3.m
% Program 13_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 p