Changeset 18027 for branches/3026_IntegrationIntoSymSpace/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/VariableNetworks
- Timestamp:
- 07/20/21 18:13:55 (3 years ago)
- Location:
- branches/3026_IntegrationIntoSymSpace
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.Problems.Instances.DataAnalysis
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Problems.Instances.DataAnalysis merged: 17931,17966-17967,17969,17973-17974
- Property svn:mergeinfo changed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Regression/VariableNetworks/GaussianProcessVariableNetwork.cs
r17180 r18027 68 68 69 69 // decompose 70 alglib. trfac.spdmatrixcholesky(ref K, nRows, false);70 alglib.spdmatrixcholesky(ref K, nRows, false); 71 71 72 72 73 73 // calc y = Lu 74 74 var y = new double[u.Length]; 75 alglib. ablas.rmatrixmv(nRows, nRows, K, 0, 0, 0, u, 0, ref y, 0);75 alglib.rmatrixmv(nRows, nRows, K, 0, 0, 0, u, 0, ref y, 0); 76 76 77 77 // calculate relevance by removing dimensions … … 96 96 97 97 var yChanged = new double[u.Length]; 98 alglib. ablas.rmatrixmv(nRows, nRows, changedK, 0, 0, 0, u, 0, ref yChanged, 0);98 alglib.rmatrixmv(nRows, nRows, changedK, 0, 0, 0, u, 0, ref yChanged, 0); 99 99 100 100 OnlineCalculatorError error;
Note: See TracChangeset
for help on using the changeset viewer.