Changeset 6003
- Timestamp:
- 04/11/11 19:06:51 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/HeuristicLab.Algorithms.DataAnalysis.Views-3.4.csproj
r5829 r6003 114 114 </ItemGroup> 115 115 <ItemGroup> 116 <Compile Include="KMeansClusteringModelView.cs"> 117 <SubType>UserControl</SubType> 118 </Compile> 119 <Compile Include="KMeansClusteringModelView.Designer.cs"> 120 <DependentUpon>KMeansClusteringModelView.cs</DependentUpon> 121 </Compile> 116 122 <Compile Include="SupportVectorMachineModelSupportVectorsView.cs"> 117 123 <SubType>UserControl</SubType> -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Clustering/ClusteringSolutionEstimatedClusterView.cs
r5975 r6003 101 101 102 102 matrix = new DoubleMatrix(values); 103 var columnNames = dataset.VariableNames.ToList();103 var columnNames = Content.ProblemData.AllowedInputVariables.ToList(); 104 104 columnNames.Insert(0, CLUSTER_NAMES); 105 105 matrix.ColumnNames = columnNames;
Note: See TracChangeset
for help on using the changeset viewer.