Accord.Audio.Windows.WindowBase.this C# (CSharp) Method

this() public method

Gets or sets values for the Window function.
public this ( int index ) : float
index int
return float
        public float this[int index]
        {
            get { return window[index]; }
            protected set { window[index] = value; }
        }