comparison toolboxes/AudioInpaintingToolbox/Utils/wRect.m @ 144:19e0af570914 release_1.5

Merge from branch "ivand_dev"
author Ivan <ivan.damnjanovic@eecs.qmul.ac.uk>
date Tue, 26 Jul 2011 15:14:15 +0100
parents 56d719a5fd31
children
comparison
equal deleted inserted replaced
143:8d866d96f006 144:19e0af570914
1 function w = wRect(L)
2 % This code is distributed under the terms of the GNU Public License version 3 (http://www.gnu.org/licenses/gpl.txt).
3 % rectangular window with length L
4 %
5 % Usage:
6 % w = wRect(L)
7 %
8 % Inputs:
9 % - L - window length
10 %
11 % Outputs:
12 % - w - window
13 %
14 % -------------------
15 %
16 % Audio Inpainting toolbox
17 % Date: June 28, 2011
18 % By Valentin Emiya, Amir Adler, Maria Jafari
19 w = ones(1,L);
20 return