view dsp/expwin.m @ 58:ba866ae124c6

Now accepts single color index for all points.
author samer
date Fri, 09 Oct 2015 13:01:37 +0100
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));