代码搜索:Sampling
找到约 3,969 项符合「Sampling」的源代码
代码结果 3,969
www.eeworm.com/read/387887/8649558
m p5_1.m
% Program P5_1
% Illustration of the Sampling Process
% in the Time-Domain
clf;
t = 0:0.0005:1;
f = 13;
xa = cos(2*pi*f*t);
subplot(2,1,1)
plot(t,xa);grid
xlabel('时间, msec');ylabel('振幅');
t
www.eeworm.com/read/387887/8649566
asv p5_1.asv
% Program P5_1
% Illustration of the Sampling Process
% in the Time-Domain
clf;
t = 0:0.0005:1;
f = 13;
xa = cos(2*pi*f*t);
subplot(2,1,1)
plot(t,xa);grid
xlabel('时间, msec');ylabel('振幅');
t
www.eeworm.com/read/429797/8788362
m sub_mean2.m
function [SP2, mean_array2, mean1, array_bins]=sub_mean2(SP, Fs, pps)
% % sub_mean: Removes the running average from a time record given a sampling rate and high pass cutoff frequency.
% %
% % S
www.eeworm.com/read/186987/8886222
m p5_1.m
% Program P5_1
% Illustration of the Sampling Process
% in the Time-Domain
clf;
t = 0:0.0005:1;
f = 13;
xa = cos(2*pi*f*t);
subplot(2,1,1)
plot(t,xa);grid
xlabel('Time, msec');ylabel('Amplitude');
ti
www.eeworm.com/read/176500/9495705
m prog8b2.m
%
% m-file for Example 8B.2 (Program 8B.2, p566).
% Program name: prog8b2.m
%
N=2; % Filter order
Fs=1280; % Sampling frequency
FN=Fs/2;
fc=150; % Cutoff frequenc
www.eeworm.com/read/176500/9495719
m prog8b1.m
%
% m-file for Example 8B.1 (Program 8B.1, p564).
% Program name: prog8b1.m
%
N=2; % Filter order
Fs=1280; % Sampling frequency
fc=150; % Cutoff frequency
WC=2*pi
www.eeworm.com/read/168454/9912401
m prog8b2.m
%
% m-file for Example 8B.2 (Program 8B.2, p566).
% Program name: prog8b2.m
%
N=2; % Filter order
Fs=1280; % Sampling frequency
FN=Fs/2;
fc=150; % Cutoff frequenc
www.eeworm.com/read/168454/9912414
m prog8b1.m
%
% m-file for Example 8B.1 (Program 8B.1, p564).
% Program name: prog8b1.m
%
N=2; % Filter order
Fs=1280; % Sampling frequency
fc=150; % Cutoff frequency
WC=2*pi
www.eeworm.com/read/142343/10248783
asv dsp.asv
%1)time domain analysis
[y,fs] = wavread('assA04.wav'); % read signal 'assAo4.wav'
r1=length(y); % length of each samples
t=(0:r1-1)/fs; % use all samples multiply each sampling peri
www.eeworm.com/read/142343/10248784
m dsp.m
%1)time domain analysis
[y,fs] = wavread('assA04.wav'); % read signal 'assAo4.wav'
r1=length(y); % length of each samples
t=(0:r1-1)/fs; % use all samples multiply each sampling peri