Changeset 12817 for trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/GaussianProcessModel.cs
- Timestamp:
- 07/30/15 16:55:22 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/GaussianProcess/GaussianProcessModel.cs
r12792 r12817 168 168 alglib.densesolverreport denseSolveRep; 169 169 170 var res = alglib. spdmatrixcholesky(ref l, n, false);170 var res = alglib.trfac.spdmatrixcholesky(ref l, n, false); 171 171 if (!res) throw new ArgumentException("Matrix is not positive semidefinite"); 172 172 … … 297 297 298 298 // for stddev 299 alglib. rmatrixlefttrsm(n, newN, l, 0, 0, false, false, 0, ref sWKs, 0, 0);299 alglib.ablas.rmatrixlefttrsm(n, newN, l, 0, 0, false, false, 0, ref sWKs, 0, 0); 300 300 301 301 for (int i = 0; i < newN; i++) {
Note: See TracChangeset
for help on using the changeset viewer.