Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/11/11 15:32:18 (13 years ago)
Author:
gkronber
Message:

#1523: fixed bug in fixed data analysis algorithms.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/Linear/LinearDiscriminantAnalysis.cs

    r6002 r6182  
    6868      string targetVariable = problemData.TargetVariable;
    6969      IEnumerable<string> allowedInputVariables = problemData.AllowedInputVariables;
    70       int samplesStart = problemData.TrainingPartition.Start;
    71       int samplesEnd = problemData.TrainingPartition.End;
    72       IEnumerable<int> rows = Enumerable.Range(samplesStart, samplesEnd - samplesStart);
     70      IEnumerable<int> rows = problemData.TrainingIndizes;
    7371      int nClasses = problemData.ClassNames.Count();
    7472      double[,] inputMatrix = AlglibUtil.PrepareInputMatrix(dataset, allowedInputVariables.Concat(new string[] { targetVariable }), rows);
Note: See TracChangeset for help on using the changeset viewer.