Skip to content

Commit

Permalink
Update PulseTrain.cs
Browse files Browse the repository at this point in the history
Commented out methods in this class because the idea was not yielding good enough results.
  • Loading branch information
towsey committed Sep 2, 2019
1 parent 1228ff3 commit e807743
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/TowseyLibrary/PulseTrain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
// This class contains methods to recognise pulse trains.
// It is an alternative to using the Oscillations class.


using System;
using System.Collections.Generic;
using System.Linq;
Expand All @@ -18,8 +17,14 @@ namespace TowseyLibrary
using Acoustics.Shared.ConfigFile;
using MathNet.Numerics.LinearAlgebra.Solvers;

/// <summary>
/// This class was an attempt to detect pulse trains as an alternative to using the Oscillation recognition methods.
/// It did not work effectively so discontinued the idea and have commented out the three methods.
/// </summary>
public static class PulseTrain
{
/*
/// <summary>
/// This method creates a template to recognise two pulses that are possibly part of a pulse train.
/// The template is designed to detect pulse trains of at least 2 pulses!
Expand Down Expand Up @@ -157,5 +162,6 @@ public static double[] GetPulseTrainScore(double[] signal, double pulsesPerSecon
return scores;
}
*/
}
}

0 comments on commit e807743

Please sign in to comment.