Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/15/16 20:23:12 (7 years ago)
Author:
gkronber
Message:

#2697:

  • extended converter for linear models to support lagged variables and changed AR(k) to use this method
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Converters/Convert.cs

    r14390 r14391  
    4848      return LinearModelToTreeConverter.CreateTree(variableNames, coefficients, @const);
    4949    }
     50    public static ISymbolicExpressionTree CreateLinearModel(string[] variableNames, int[] lags, double[] coefficients,
     51      double @const = 0) {
     52      return LinearModelToTreeConverter.CreateTree(variableNames, coefficients, @const);
     53    }
    5054  }
    5155}
Note: See TracChangeset for help on using the changeset viewer.