Merge branch 'dev'

This commit is contained in:
Miha Kralj
2024-09-30 19:09:26 -07:00
21 changed files with 375 additions and 69 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ using System.Linq;
// Shannon's Entropy calculation
public class Entropy : AbstractBase
{
public readonly int Period;
private CircularBuffer _buffer;
private readonly int Period;
private readonly CircularBuffer _buffer;
public Entropy(int period) : base()
{