comparison general/numerical/array/hgauss_win.m @ 16:db7f4afd27c5

Rearranging numerical toolbox.
author samer
date Thu, 17 Jan 2013 13:20:44 +0000
parents general/numerical/hgauss_win.m@e44f49929e56
children
comparison
equal deleted inserted replaced
15:19ec801ee487 16:db7f4afd27c5
1 function w=hgauss_win(n,sigma)
2 % w=hgauss_win(n,sigma): half-Gaussian window
3 % half a gaussian window of length n
4 % sigma is std dev rel to window length
5
6 w=expquadf((0:n)',sigma*n);