Last change
on this file since 8366 was
8323,
checked in by gkronber, 12 years ago
|
#1902 initial import of Gaussian process regression algorithm
|
File size:
454 bytes
|
Rev | Line | |
---|
[8323] | 1 |
|
---|
| 2 |
|
---|
| 3 | using HeuristicLab.Core;
|
---|
| 4 |
|
---|
| 5 | namespace HeuristicLab.Algorithms.DataAnalysis.GaussianProcess {
|
---|
| 6 | public interface ICovarianceFunction : IItem {
|
---|
| 7 | int GetNumberOfParameters(int numberOfVariables);
|
---|
| 8 | void SetParameter(double[] hyp, double[,] x);
|
---|
| 9 | void SetParameter(double[] hyp, double[,] x, double[,] xt);
|
---|
| 10 |
|
---|
| 11 | double GetCovariance(int i, int j);
|
---|
| 12 | double[] GetDiagonalCovariances();
|
---|
| 13 | double[] GetGradient(int i, int j);
|
---|
| 14 | }
|
---|
| 15 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.