view dsp/expwin.m @ 38:9d24b616bb06

Added function algebra.
author samer
date Tue, 29 Jan 2013 15:59:01 +0000
parents c3b0cd708782
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));