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

📄 anapulse.m

📁 进行时频变换的工具箱
💻 M
字号:
function y=anapulse(N,ti);%ANAPULSE Analytic projection of unit amplitude impulse signal.%	y=ANAPULSE(N,TI) returns an analytic N-dimensional signal %	whose real part is a Dirac impulse at t=TI.%% 	N  : number of points.%	TI : time position of the impulse	(default : round(N/2)). %	%	Example :%	 signal=2.5*anapulse(512,301);plot(real(signal));%%	See also ANASTEP, ANASING, ANABPSK, ANAFSK.%	O. Lemoine - June 1995, F. Auger, August 1995.%	Copyright (c) 1996 by CNRS (France).%%	------------------- CONFIDENTIAL PROGRAM -------------------- %	This program can not be used without the authorization of its%	author(s). For any comment or bug report, please send e-mail to %	f.auger@ieee.org if (nargin==0), error('at least one parameter required');elseif (nargin==1), ti=round(N/2);end;if (N<=0), error('N must be greater than zero');else t=(1:N)'; y=hilbert(t==ti);end;

⌨️ 快捷键说明

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