Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/11/13 17:28:12 (11 years ago)
Author:
abeham
Message:

#1961:

  • Added Logarithmic flag also to AxisRatio
  • Fixed some bugs regarding initial iterations
  • Removed the PredefinedRealVectorCreator and instead added a NormalDistributedRealVectorCreator
    • When sigma is 0 this is the same as the PredefinedRealVectorCreator
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CMAES/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.3/CMAAnalyzer.cs

    r9141 r9148  
    2828using HeuristicLab.Parameters;
    2929using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using System;
    3031
    3132namespace HeuristicLab.Algorithms.CMAEvolutionStrategy {
     
    7778        axisRatio = new DataTable("AxisRatio");
    7879        axisRatio.Rows.Add(new DataRow("AxisRatio"));
     80        axisRatio.VisualProperties.YAxisLogScale = true;
    7981        results.Add(new Result("AxisRatio", axisRatio));
    8082      }
     
    128130      }
    129131      for (int i = 0; i < vector.Length; i++)
    130         stdDevs.Rows["Axis" + i.ToString()].Values.Add(sp.C[i, i]);
     132        stdDevs.Rows["Axis" + i.ToString()].Values.Add(Math.Sqrt(sp.C[i, i]));
    131133
    132134      return base.Apply();
Note: See TracChangeset for help on using the changeset viewer.