annotate toolboxes/AudioInpaintingToolbox/Utils/wSine.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 = wSine(L)
ivan@138 2 % Symetric sine window with length L
ivan@138 3 %
ivan@138 4 % Usage:
ivan@138 5 % w = wSine(L)
ivan@138 6 %
ivan@138 7 % Inputs:
ivan@138 8 % - L - Window length
ivan@138 9 %
ivan@138 10 % Outputs:
ivan@138 11 % - w - window
ivan@138 12 %
ivan@138 13 % -------------------
ivan@138 14 %
ivan@138 15 % Audio Inpainting toolbox
ivan@138 16 % Date: June 28, 2011
ivan@138 17 % By Valentin Emiya, Amir Adler, Maria Jafari
ivan@138 18 % This code is distributed under the terms of the GNU Public License version 3 (http://www.gnu.org/licenses/gpl.txt).
ivan@138 19
ivan@138 20 w = sin(((0:(L-1))+.5)/L*pi);
ivan@138 21 return