代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/432524/8596747
m c5_4_1.m
clear all;
clf;
N=1224;
f1=200;
f2=700;
f3=1100;
dt=1/1024;
sample=1/dt;
randn('state',sum(100*clock));
dis=2*rand(1,
www.eeworm.com/read/288877/8596906
txt choosen.m.txt
function x = ChooseN(xset,n)
% x = ChooseN(xset,n)
% Choose n distinct members of set xset, by sampling uniformly at random without replacement
% Colin Fox, 20 Jan 2003
x = xset(ChooseNFromM(l
www.eeworm.com/read/431958/8644783
c fet430_adc12_04.c
//******************************************************************************
// MSP-FET430P430 Demo - ADC12, Extend Sampling period with SHT Bits
//
// This example shows how to extend the sa
www.eeworm.com/read/288205/8647589
m c5_4_1.m
clear all;
clf;
N=1224;
f1=200;
f2=700;
f3=1100;
dt=1/1024;
sample=1/dt;
randn('state',sum(100*clock));
dis=2*rand(1,
www.eeworm.com/read/431605/8665915
m loweq.m
function xl=loweq(x,ts,f0)
% xl=loweq(x,ts,f0)
%LOWEQ Returns the lowpass equivalent of the signal x.
% f0 is the center frequency.
% ts is the sampling interval.
%
t=[0:ts:ts*(length(x)-1
www.eeworm.com/read/286883/8738506
m c5_4_1.m
clear all;
clf;
N=1224;
f1=200;
f2=700;
f3=1100;
dt=1/1024;
sample=1/dt;
randn('state',sum(100*clock));
dis=2*rand(1,
www.eeworm.com/read/286642/8752624
m uwb_imr.m
function h = uwb_imr(chan, ch_idx, plot_imr)
% The first step is to read in the data from the .mat files supplied by the
% IEEE 802.15.3a working group
%
if chan==1,
load cm1_imr.mat;
else
www.eeworm.com/read/286641/8752682
m uwb_imr.m
function h = uwb_imr(chan, ch_idx, plot_imr)
% The first step is to read in the data from the .mat files supplied by the
% IEEE 802.15.3a working group
%
if chan==1,
load cm1_imr.mat;
else
www.eeworm.com/read/386083/8765200
m comp_exam3_1.m
fs = 1000; % sampling frequency
delt = 1/fs; % sampling increment
t = 0:delt:1-delt; % time vector
npts = length(t); % number of points
fn = (0:npts)-(fs/
www.eeworm.com/read/386083/8765233
m comp_exam3_2.m
fs = 1000; % sampling frequency
delt = 1/fs; % sampling increment
t = 0:delt:1-delt; % time vector
npts = length(t); % number of points
fn = (0:(npts/2))*(fs/npts