代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/248284/12585520
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/238364/13891712
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);
www.eeworm.com/read/236814/13998224
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);
www.eeworm.com/read/100204/15880665
1 cdda2wav.1
'\" t
.\" @(#)cdda2wav.1 1.4 00/01/02 Copyright 1998,1999,2000 Heiko Eissfeldt
.TH CDDA2WAV 1
.SH NAME
cdda2wav \- a sampling utility that dumps CD audio data into wav sound
files
.SH SYNOPSIS
.B cdda
www.eeworm.com/read/429878/8784019
htm demmet1.htm
Netlab Reference Manual demmet1
demmet1
Purpose
Demonstrate Markov Chain Monte Carlo sampling on a Gaussian.
Synopsis
www.eeworm.com/read/429878/8784123
htm hmc.htm
Netlab Reference Manual hmc
hmc
Purpose
Hybrid Monte Carlo sampling.
Synopsis
samples = hmc(f, x, options, gra
www.eeworm.com/read/186987/8886038
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/362593/9989746
m chap1_2.m
%Discrete PID control for continuous plant
clear all;
close all;
tic
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/359349/10154003
m fft_contin.m
% Name:FFT_contin
clear,close all;
fs=input('Type in the sampling frequence fs=');
F=input('Type in F=');
N=fs/F;
M=ceil(log2(N));
N=2^M;
F=fs/N;
Tp=1/F;
T=Tp/N;
t=0:T:Tp;
x=input('Type in
www.eeworm.com/read/160929/10469420
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 -