代码搜索:Sampling

找到约 3,969 项符合「Sampling」的源代码

代码结果 3,969
www.eeworm.com/read/145702/12706879

m goertzel_941.m

% Goertzel_941.m % Calculating IIR filter coefficients % Numerator coefficients B0 = 32767; % Denominator coefficients A0 = 32767; A1 = -24295 * 2; A2 = 32767; b = [B0 ]; a = [A0 A1
www.eeworm.com/read/145702/12706880

m goertzel_852.m

% Goertzel_852.m % Calculating IIR filter coefficients % Numerator coefficients B0 = 32767; % Denominator coefficients A0 = 32767; A1 = -25596 * 2; A2 = 32767; b = [B0 ]; a = [A0 A1
www.eeworm.com/read/145701/12706901

m fir_1.m

% fir_1.m % Calculating FIR coefficients Fs = 48000; % Sampling frequency FN = Fs/2; % Nyquist frequency Fc = 300/FN; % Cutoff frequency normalised to FN N = 51;
www.eeworm.com/read/142092/12963271

m psd3d.m

function [t3, w3, z3]=psd3d(w, p, w1, t0, t1); % The function PSD3D computes the variables, t3, w3, z3 for 3-D Fourier Spectrum plots. % Computed Fourier spectrum variables w and p are passed to
www.eeworm.com/read/327552/13073118

m lfm_creat.m

function LFM_creat(B,T); T=10e-6; %发射脉宽10us B=30e6; time_B_product = B * T; if(time_B_product < 5 ) fprintf('************ Time Bandwidth product is TOO SMALL
www.eeworm.com/read/140560/13074467

c fet140_adc12_04.c

//****************************************************************************** // MSP-FET430P140 Demo - ADC12, Extend Sampling Period with SHT Bits // // Description: This example shows how to
www.eeworm.com/read/238965/13312405

m lfm.m

function LFM(B,T); time_B_product = B * T; if(time_B_product < 5 ) fprintf('************ Time Bandwidth product is TOO SMALL ***************') fprintf('\n Change B and or T') return
www.eeworm.com/read/322692/13371263

c fet140_adc12_07.c

//****************************************************************************** // MSP-FET430P140 Demo - ADC12, Single Conversion on Single Channel // // This example shows how to perform a sin
www.eeworm.com/read/322692/13371266

c fet140_adc12_10.c

//****************************************************************************** // MSP-FET430P140 Demo - ADC12, Trigger Conversion With Timer_A // // Description: Trigger an A/D conversion with
www.eeworm.com/read/321424/13405078

m lfm.m

function LFM(B,T); time_B_product = B * T; if(time_B_product < 5 ) fprintf('************ Time Bandwidth product is TOO SMALL ***************') fprintf('\n Change B and or T') return