代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/387887/8649395
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)); axi
www.eeworm.com/read/429878/8783843
htm demhmc1.htm
Netlab Reference Manual demhmc1
demhmc1
Purpose
Demonstrate Hybrid Monte Carlo sampling on mixture of two Gaussians.
Synops
www.eeworm.com/read/429733/8792084
txt d.txt
用于产生WCDMA 仿真信号源
close all
clear all
% Make a pulse
BufferSize = 2048;
BW = 2E6; % bandwidth in Hz
Fs = 125E6; % sampling rate
N = 2048;
IF_freq = Fs / BufferSize * 256; % 15,625,000 Hz
w = ch
www.eeworm.com/read/384427/8869918
m fsk_nocoherent.m
clear all;
close all;
%Sampling frequency.
Fs = 40000;
% samples per bit
L = 100;
Tb = L/Fs;
Fc1 = 5200;
Fc2 = 4800;
t=[1/Fs:1/Fs:Tb];
num_samp = 30000;
Vec_sgnl = wavrecord(num_samp,
www.eeworm.com/read/186987/8886049
m p10_5.m
% Program P10_5
% Illustration of Decimation Process
%
clf;
M = input('Down-sampling factor = ');
n = 0:99;
x = sin(2*pi*0.043*n) + sin(2*pi*0.031*n);
y = decimate(x,M,'fir');
subplot(2,1,1);
stem(n,x
www.eeworm.com/read/186987/8886059
m p10_1.m
% Program 10_1
% Illustration of Up-Sampling by an Integer Factor
%
clf;
n = 0:50;
x = sin(2*pi*0.12*n);
y = zeros(1, 3*length(x));
y([1: 3: length(y)]) = x;
subplot(2,1,1)
stem(n,x);
title('Input Seq
www.eeworm.com/read/427304/8952656
c sin8_phase_shift.c
//sin8_phase_shift Sine generation. Illustrate phase shift
#include "dsk6713_aic23.h" //codec-DSK support file
Uint32 fs=DSK6713_AIC23_FREQ_8KHZ; //set sampling rate
short loop = 0;
short si
www.eeworm.com/read/427304/8952664
c bpsk_rein.c
//BPSK.c Real IN
#include "dsk6713_aic23.h" //codec-DSK support file
#include
Uint32 fs=DSK6713_AIC23_FREQ_32KHZ; //set sampling rate
#define NUMSAMP 4 //# samples per symbol
#de
www.eeworm.com/read/382938/8989725
m chap1_2.m
%Discrete PID control for continuous plant
clear all;
close all;
ts=0.001; %Sampling time
xk=zeros(2,1);
e_1=0;
u_1=0;
for k=1:1:2000
time(k) = k*ts;
rin(k)=0.50*sin(1*2*pi*k*ts);
www.eeworm.com/read/377814/9262129
m chap1_6.m
%Discrete PID control for continuous plant
clear all;
close all;
ts=0.001; %Sampling time
xk=zeros(2,1);
e_1=0;
u_1=0;
for k=1:1:2000
time(k) = k*ts;
rin(k)=0.50*sin(1*2*pi*k*ts);