代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/334933/3360548
m p10_2.m
% Program P10_2
% Illustration of Down-Sampling by an Integer Factor
%
clf;
n = 0: 49;
m = 0: 50*3 - 1;
x = sin(2*pi*0.042*m);
y = x([1 : 3 : length(x)]);
subplot(2,1,1)
stem(n, x(1:50)); axis([0 50 -
www.eeworm.com/read/301474/3839502
m p10_2.m
% Program P10_2
% Illustration of Down-Sampling by an Integer Factor
%
clf;
n = 0: 49;
m = 0: 50*3 - 1;
x = sin(2*pi*0.042*m);
y = x([1 : 3 : length(x)]);
subplot(2,1,1)
stem(n, x(1:50)); axis([0 50 -
www.eeworm.com/read/301474/3839648
m p10_2.m
% Program P10_2
% Illustration of Down-Sampling by an Integer Factor
%
clf;
n = 0: 49;
m = 0: 50*3 - 1;
x = sin(2*pi*0.042*m);
y = x([1 : 3 : length(x)]);
subplot(2,1,1)
stem(n, x(1:50)); axis([0 50 -
www.eeworm.com/read/448886/1683410
m p10_2.m
% Program P10_2
% Illustration of Down-Sampling by an Integer Factor
%
clf;
n = 0: 49;
m = 0: 50*3 - 1;
x = sin(2*pi*0.042*m);
y = x([1 : 3 : length(x)]);
subplot(2,1,1)
stem(n, x(1:50)); axis([0 50 -
www.eeworm.com/read/448886/1683556
m p10_2.m
% Program P10_2
% Illustration of Down-Sampling by an Integer Factor
%
clf;
n = 0: 49;
m = 0: 50*3 - 1;
x = sin(2*pi*0.042*m);
y = x([1 : 3 : length(x)]);
subplot(2,1,1)
stem(n, x(1:50)); axis([0 50 -
www.eeworm.com/read/378914/2679232
m p10_2.m
% Program P10_2
% Illustration of Down-Sampling by an Integer Factor
%
clf;
n = 0: 49;
m = 0: 50*3 - 1;
x = sin(2*pi*0.042*m);
y = x([1 : 3 : length(x)]);
subplot(2,1,1)
stem(n, x(1:50)); axis([0 50 -
www.eeworm.com/read/378914/2679378
m p10_2.m
% Program P10_2
% Illustration of Down-Sampling by an Integer Factor
%
clf;
n = 0: 49;
m = 0: 50*3 - 1;
x = sin(2*pi*0.042*m);
y = x([1 : 3 : length(x)]);
subplot(2,1,1)
stem(n, x(1:50)); axis([0 50 -
www.eeworm.com/read/108859/15574066
m examp64.m
clc,echo on
%EXAMPLE 64
S=2; % Sampling frequency
[N1, D1]=s2zmatch(1,[1 1],S,'0',0); % Matched z-transform
[N2, D2]=s2zinvar(1,[1 1],S,'i',0); % Impu
www.eeworm.com/read/190387/8444195
m ica.m
% The time period of the signal considered
Tf=0.5;
% The sampling time period
Ts=1e-5;
t=0:Ts:Tf;
Num_iter=100000;
% The source signals
u1=0.1*sin(400*t).*cos(30*t);
u2=0.01*sign(sin(500*t+9*cos(4
www.eeworm.com/read/427304/8952653
c bpsk demod.c
//bpsk_demod.c Input from 1st DSK running phase-shifted sine
#include "dsk6713_aic23.h" //codec-DSK support file
#include
Uint32 fs=DSK6713_AIC23_FREQ_16KHZ; //set sampling rate
#def