view dsp/expwin.m @ 32:c3b0cd708782

Imported core dsp tools.
author samer
date Sun, 20 Jan 2013 13:48:47 +0000
parents
children
line wrap: on
line source
% expwin - Exponential window
%
% expwin :: nonneg, N:natural -> [[N]].
function h=expwin(tau,n), h=exp(-(0:n-1)'/(n*tau));