⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 moptimum.m

📁 数字信号处理实践方法
💻 M
字号:
function moptimum

%Program moptimum is for designing I-stage optimum decimator 		
%or interpolator (I=1,2,3 or 4). The program computes the decimation	
%factors, filter characteristics, and decimator efficiencies	
								
%The following parameters must be provided by the user:		
%	Fs	-	input sampling frequency			
%	M	-	overall decimation factor			
%	fp	-	passband edge frequency				
%	dp	-	overall passband deviation in +ve dB		
%	ds	-	overall stopband deviation in +ve dB

clear all;
Fs = 96000;		% sampling frequency in Hz
fp = 450;		% passband edge frequency in Hz
dp = 0.0864;	% overall passband deviation in +ve dB
ds = 60;			% overall stopband deviation in +ve dB
M = 96;			% overall decimation factor

EvalNStageDecimator(Fs,fp,dp,ds,M); % evaluate single stage decimator
for i=2:4	% evaluate all possible 2-, 3- and 4-stage decimators
   R = GetFactors(M,i);
	for j=1:size(R,1);
   	EvalNStageDecimator(Fs,fp,dp,ds,R(j,:));
	end
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -