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