Files

18 lines
559 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using System;
namespace FftSharp.Windows
{
public class Bartlett : Window, IWindow
{
public override string Name => "BartlettHann";
public override string Description =>
"The BartlettHann window is triangular in shape (a 2nd order B-spline) which is effectively the " +
"convolution of two half-sized rectangular windows.";
protected override double windowValue(int index, int size)
{
return 1 - Math.Abs((double)(index - (size / 2)) / (size / 2));
}
}
}