- Timestamp:
- 11/20/12 13:05:06 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/CovarianceFunctions/CovarianceLinear.cs
r8929 r8931 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq; 24 25 using HeuristicLab.Common; 25 26 using HeuristicLab.Core; … … 60 61 61 62 public double GetCrossCovariance(double[,] x, double[,] xt, int i, int j, IEnumerable<int> columnIndices) { 62 return Util.ScalarProd(x, i, xt, j );63 return Util.ScalarProd(x, i, xt, j, 1.0 , columnIndices); 63 64 } 64 65 }
Note: See TracChangeset
for help on using the changeset viewer.