Mercurial > hg > smallbox
comparison toolboxes/AudioInpaintingToolbox/Utils/wRect.m @ 138:56d719a5fd31 ivand_dev
Audio Inpaintin Toolbox
author | Ivan Damnjanovic lnx <ivan.damnjanovic@eecs.qmul.ac.uk> |
---|---|
date | Thu, 21 Jul 2011 14:27:47 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
137:9207d56c5547 | 138:56d719a5fd31 |
---|---|
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 |