This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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));
}
}
}