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

📄 hilbertq.m

📁 This is transfer function for matlab.
💻 M
字号:
function y = hilbertq(x)% HILBERTQ: interpolation%%       y = hilbertq(x)%% 	x is input%	bhil is the hilbert filter% 	y is output waveform%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%				% options	filter_plot = 0;	f = [.05 .95];	m = [1 1];	N = 200;	b = remez(N, f, m, 'hilbert');	if filter_plot == 1		clg;		subplot(311);		plot(b);		fb = fft(b, 1024);		subplot(312);		plot(20*log(abs(fb(1:512))));	end;	yh = conv2(x,b,'same');	y = x + j*yh;	if filter_plot == 1;		subplot(313);		plot(abs(y));		pause(1);	end;	%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

⌨️ 快捷键说明

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