代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/456354/7351422
m ip_07_01.m
% MATLAB script for Illustrated Problem 1, Chapter 7.
echo on
T=1;
delta_T=T/200; % sampling interval
alpha=0.5; % roll-off factor
fc=40/T; % carrier frequency
A_
www.eeworm.com/read/449504/7502040
m becm_g.m
function results = becm_g(y,nlag,prior,ndraw,nomit,r)
% PURPOSE: Gibbs sampling estimates for Bayesian error correction
% model using Minnesota-type prior
% dy = A(L) DY + E, E = N
www.eeworm.com/read/448350/7534498
m lpcrand.m
function ar=lpcrand(p,n,bw)
% generate n random stable polynomials of order p with a minimum pole
% bandwidth of bw*fs where fs is the sampling fequency.
% To limit the pole radius to r set bw=-log
www.eeworm.com/read/446736/7567370
m dsgnbutworth_varorder.m
function dsgnbutworth_varorder(order)
%dsgnbutworth_varorder.m
%used to design a Butterworth filter,which has a variable
%even order(>=16)and a 1.5KHz-5KHz passband with a sampling
%rate 16KHz.
www.eeworm.com/read/440750/7682256
m lpcrand.m
function ar=lpcrand(p,n,bw)
% generate n random stable polynomials of order p with a minimum pole
% bandwidth of bw*fs where fs is the sampling fequency.
% To limit the pole radius to r set bw=-log
www.eeworm.com/read/440741/7682371
m chenjob21ding.m
A=input('please enter the matrix A= ');
B=input('please enter the matrix B= ');
T=input('please enter the sampling time T= ');
E=input('please enter the set error E= ');
L=1;
a=0;
[m,n]=size(A
www.eeworm.com/read/439562/7706053
m myfft.m
function myfft(Sgn,Fs,L)
%Sgn : Signal
% Fs : Sampling frequency
% L : Length of signal
T = 1/Fs; % Sample time
NFFT = 2^nextpow2(L); % Next power of 2 from length of y
www.eeworm.com/read/199778/7823000
m program_10_5.m
% Program 10_5
% Illustration of Decimation Process
%
clf;
N = input('Length of input signal = ');
M = input('Down-sampling factor = ');
f1 = input('Frequency of first sinusoid = ');
f2 = input
www.eeworm.com/read/199777/7823064
m program_10_6.m
% Program 10_6
% Illustration of Interpolation Process
%
clf;
N = input('Length of input signal = ');
L = input('Up-sampling factor = ');
f1 = input('Frequency of first sinusoid = ');
f2 = inpu
www.eeworm.com/read/199777/7823070
m program_10_5.m
% Program 10_5
% Illustration of Decimation Process
%
clf;
N = input('Length of input signal = ');
M = input('Down-sampling factor = ');
f1 = input('Frequency of first sinusoid = ');
f2 = input