- Timestamp:
- 03/05/14 13:43:58 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IManipulationLogic.cs
r10369 r10535 3 3 namespace HeuristicLab.DataPreprocessing { 4 4 public interface IManipulationLogic { 5 void reOrderToIndices(IEnumerable<int> indices);6 void reOrderToIndices(IList<Tuple<int, int>> indices);5 void ReOrderToIndices(IEnumerable<int> indices); 6 void ReOrderToIndices(IList<Tuple<int, int>> indices); 7 7 void ReplaceIndicesByAverageValue(int columnIndex, IEnumerable<int> rowIndices); 8 8 void ReplaceIndicesByLinearInterpolationOfNeighbours(int columnIndex, IEnumerable<int> rowIndices);
Note: See TracChangeset
for help on using the changeset viewer.