Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3106_AnalyticContinuedFractionsRegression/HeuristicLab.Algorithms.DataAnalysis/3.4/ContinuedFractionRegression/Term.cs @ 17971

Last change on this file since 17971 was 17971, checked in by gkronber, 3 years ago

#3106: first implementation of the algorithm as described in the paper

File size: 219 bytes
Line 
1namespace HeuristicLab.Algorithms.DataAnalysis.ContinuedFractionRegression {
2  public class Term {
3    public double beta;
4    public double[] coef;
5    public bool[] vars; // TODO implement as properties
6  }
7}
Note: See TracBrowser for help on using the repository browser.