Mercurial > hg > smallbox
annotate toolboxes/AudioInpaintingToolbox/Utils/wRect.m @ 247:ecce33192fcc tip
Added tag ver_2.1 for changeset cef4500b936f
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Wed, 31 Oct 2012 12:24:44 +0000 |
parents | 56d719a5fd31 |
children |
rev | line source |
---|---|
ivan@138 | 1 function w = wRect(L) |
ivan@138 | 2 % This code is distributed under the terms of the GNU Public License version 3 (http://www.gnu.org/licenses/gpl.txt). |
ivan@138 | 3 % rectangular window with length L |
ivan@138 | 4 % |
ivan@138 | 5 % Usage: |
ivan@138 | 6 % w = wRect(L) |
ivan@138 | 7 % |
ivan@138 | 8 % Inputs: |
ivan@138 | 9 % - L - window length |
ivan@138 | 10 % |
ivan@138 | 11 % Outputs: |
ivan@138 | 12 % - w - window |
ivan@138 | 13 % |
ivan@138 | 14 % ------------------- |
ivan@138 | 15 % |
ivan@138 | 16 % Audio Inpainting toolbox |
ivan@138 | 17 % Date: June 28, 2011 |
ivan@138 | 18 % By Valentin Emiya, Amir Adler, Maria Jafari |
ivan@138 | 19 w = ones(1,L); |
ivan@138 | 20 return |