Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/06/12 15:02:34 (12 years ago)
Author:
gkronber
Message:

#1902 worked on sum and product covariance functions and fixed a few bugs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/ICovarianceFunction.cs

    r8401 r8416  
    2525  public interface ICovarianceFunction : IItem {
    2626    int GetNumberOfParameters(int numberOfVariables);
    27     void SetParameter(double[] hyp, double[,] x);
    28     void SetParameter(double[] hyp, double[,] x, double[,] xt);
     27    void SetParameter(double[] hyp);
     28    void SetData(double[,] x);
     29    void SetData(double[,] x, double[,] xt);
    2930
    3031    double GetCovariance(int i, int j);
    31     double[] GetDiagonalCovariances();
    3232    double[] GetGradient(int i, int j);
    3333  }
Note: See TracChangeset for help on using the changeset viewer.