Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/IMeanFunction.cs @ 8323

Last change on this file since 8323 was 8323, checked in by gkronber, 12 years ago

#1902 initial import of Gaussian process regression algorithm

File size: 317 bytes
Line 
1
2using HeuristicLab.Core;
3
4namespace HeuristicLab.Algorithms.DataAnalysis.GaussianProcess {
5  public interface IMeanFunction : IItem {
6    int GetNumberOfParameters(int numberOfVariables);
7    void SetParameter(double[] hyp, double[,] x);
8    double[] GetMean();
9    double[] GetGradients(int k);
10  }
11}
Note: See TracBrowser for help on using the repository browser.