Changeset 11716
- Timestamp:
- 12/22/14 15:05:16 (10 years ago)
- Location:
- branches/ExcelIntegration/HeuristicLabExcel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ExcelIntegration/HeuristicLabExcel/ExcelFunctions.cs
r11217 r11716 13 13 return x * y; 14 14 } 15 [ExcelFunction(Description = "Random forest", Category = "Useful functions")] 15 16 17 [ExcelFunction(Description = "Random forest", Category = "Data Analysis")] 16 18 public static double[,] PredictRandomForest(double[,] x, double[] y) { 17 19 int nRows = x.GetLength(0); -
branches/ExcelIntegration/HeuristicLabExcel/HeuristicLabExcel.csproj
r11217 r11716 40 40 </Reference> 41 41 <Reference Include="HeuristicLab.Algorithms.DataAnalysis-3.4"> 42 <HintPath>..\..\..\ ..\trunk\sources\bin\HeuristicLab.Algorithms.DataAnalysis-3.4.dll</HintPath>42 <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Algorithms.DataAnalysis-3.4.dll</HintPath> 43 43 </Reference> 44 44 <Reference Include="HeuristicLab.Common-3.3"> 45 <HintPath>..\..\..\ ..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>45 <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath> 46 46 </Reference> 47 47 <Reference Include="HeuristicLab.Core-3.3"> 48 <HintPath>..\..\..\ ..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>48 <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath> 49 49 </Reference> 50 50 <Reference Include="HeuristicLab.Data-3.3"> 51 <HintPath>..\..\..\ ..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>51 <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath> 52 52 </Reference> 53 53 <Reference Include="HeuristicLab.Optimization-3.3"> 54 <HintPath>..\..\..\ ..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath>54 <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath> 55 55 </Reference> 56 56 <Reference Include="HeuristicLab.Problems.DataAnalysis-3.4"> 57 <HintPath>..\..\..\ ..\trunk\sources\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath>57 <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath> 58 58 </Reference> 59 59 <Reference Include="System" />
Note: See TracChangeset
for help on using the changeset viewer.