代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/482655/6620667
m page10.m
%sampling signal
t=0:1:30;
x=exp(-.1*t).*sin(2/3*t);
stem(t,x,'filled');
axis([0 30 -1 1]);
grid;
xlabel('Time(sec)');
ylabel('x(t)');
www.eeworm.com/read/482655/6620682
asv yuji.asv
%先对模拟滤波器进行预畸,可以消除偏差的影响
N=2;%number of poles
T=0.2;%sampling time
wc=2;%analog cutoff frequency
Wc=wc*T/pi;%标准化后的数字滤波器的截止频率
[numd,dend]=butter(N,Wc);%直接用
www.eeworm.com/read/482655/6620687
m yuji.m
%先对模拟滤波器进行预畸(prewarping),可以消除偏差的影响
N=2;%number of poles
T=0.2;%sampling time
wc=2;%analog cutoff frequency
Wc=wc*T/pi;%标准化后的数字滤波器的截止频率
[numd,dend]=butter(N,Wc);%直接用butter函数
www.eeworm.com/read/482655/6620690
m prewarping.m
%先对模拟滤波器进行预畸,可以消除偏差的影响
N=2;%number of poles
T=0.2;%sampling time
wc=2;%analog cutoff frequency
Wc=wc*T/pi;%标准化后的数字滤波器的截止频率
[numd,dend]=butter(N,Wc);%直接用butter函数
www.eeworm.com/read/217231/6644392
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/480444/6664379
m prfpri.m
%Pulse Width
t=1e-1;
%PRI
pri=9*t;
%No. of Pulses
n=3;
%Sampling Frequency
fs=6e4;
%Carrier Frequency
fc=1e4;
t=linspace(0,pri,1000);
x=[ones(1,100) zeros(1,900)];
% plot(t,x);
X=[x x
www.eeworm.com/read/479546/6688335
m testjlinkage.m
%-----------------------------------------------------------
% Test J-Linkage algorithm
%
% Authors: R.Toldo A.Fusiello, department of computer science - University of Verona.
% Reference Paper: R
www.eeworm.com/read/479036/6698184
m lfmd.m
%%demo of chirp signal
function Sr=lfmd(T,B)
%example:
%pulse duration10us T=10e-6
%chirp frequency modulation bandwidth 30MHz B=30e6
K=B/T; %chirp slope
www.eeworm.com/read/479036/6698185
m lfm.m
%%demo of chirp signal
T=10e-6; %pulse duration10us
B=30e6; %chirp frequency modulation bandwidth 30MHz
K=B/T;
www.eeworm.com/read/264747/11302923
m prog9b3.m
%
% m-file to illustrate simple interpolation and
% decimation operations (Program 9B.2, p644).
% File name: prog9b3.m
% An Illustration of sampling rate changes using upfirdn by a factor of