Changeset 8416 for trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/ICovarianceFunction.cs
- Timestamp:
- 08/06/12 15:02:34 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/ICovarianceFunction.cs
r8401 r8416 25 25 public interface ICovarianceFunction : IItem { 26 26 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); 29 30 30 31 double GetCovariance(int i, int j); 31 double[] GetDiagonalCovariances();32 32 double[] GetGradient(int i, int j); 33 33 }
Note: See TracChangeset
for help on using the changeset viewer.