Mercurial > hg > smallbox
view toolboxes/AudioInpaintingToolbox/Utils/wRect.m @ 161:f42aa8bcb82f ivand_dev
debug and clean the SMALLbox Problems code
author | Ivan Damnjanovic lnx <ivan.damnjanovic@eecs.qmul.ac.uk> |
---|---|
date | Wed, 31 Aug 2011 12:02:19 +0100 |
parents | 56d719a5fd31 |
children |
line wrap: on
line source
function w = wRect(L) % This code is distributed under the terms of the GNU Public License version 3 (http://www.gnu.org/licenses/gpl.txt). % rectangular window with length L % % Usage: % w = wRect(L) % % Inputs: % - L - window length % % Outputs: % - w - window % % ------------------- % % Audio Inpainting toolbox % Date: June 28, 2011 % By Valentin Emiya, Amir Adler, Maria Jafari w = ones(1,L); return