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