Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/26/08 14:59:06 (16 years ago)
Author:
gkronber
Message:

merged changes r338 r339 r340 r341 r342 r343 from the ticket-specific branch into the main trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataAnalysis/Dataset.cs

    r333 r344  
    201201        for(int column = 0; column < columns; column++) {
    202202          builder.Append(";");
    203           builder.Append(samples[row * columns + column].ToString(format));
     203          builder.Append(samples[row * columns + column].ToString("r", format));
    204204        }
    205205      }
     
    222222      string s = "";
    223223      for(int i = 0; i < xs.Length; i++) {
    224         s += xs[i].ToString(CultureInfo.InvariantCulture) + "; ";
     224        s += xs[i].ToString("r", CultureInfo.InvariantCulture) + "; ";
    225225      }
    226226
Note: See TracChangeset for help on using the changeset viewer.