Changeset 9111 for trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/CovarianceFunctions
- Timestamp:
- 01/04/13 20:50:12 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/CovarianceFunctions/CovarianceRationalQuadraticIso.cs
r9108 r9111 114 114 ? 0.0 115 115 : Util.SqrDist(x, i, j, inverseLength, columnIndices); 116 return s hape * Math.Pow(1 + 0.5 * d / shape, -shape);116 return scale * Math.Pow(1 + 0.5 * d / shape, -shape); 117 117 }; 118 118 cov.CrossCovariance = (x, xt, i, j) => {
Note: See TracChangeset
for help on using the changeset viewer.