Example #1
0
 public LegendreMatchingMethod(LegendreSeries generator, float threshold = defaultThreshold)
 {
     this.threshold    = threshold;
     this.degree       = generator.Degree;
     legendreGenerator = generator;
     legendreGenerator.Init();
 }
Example #2
0
 protected virtual void InitCoefficientsGenerator()
 {
     legendreGenerator = new LegendreSeries(degree);
     legendreGenerator.Init();
 }