Re: [Numpy-discussion] Numpy savetxt: change decimal separator

2009-09-24 Thread Tim Michelsen
>> And another question I import this file to excel, is there also a >> possiblity to create a headline for each column, that the file looks >> like the following example: >> >> average; standard deviation; maximum distance; sum of distances >> 0,26565; 0,65565; 2,353535; 25, 5656 I was fid

Re: [Numpy-discussion] Numpy savetxt: change decimal separator

2009-09-24 Thread Junda Zhu
On Sep 24, 2009, at 3:07 AM, markus.proel...@ifm.com wrote: Hello everyone, I save data to a file with the following statement: np.savetxt(fileName, transpose((average_dist, std_deviation, maximum_dist, sum_of_dist)), delimiter = ';', fmt='%6.10f') is there a possibility to change the deci

Re: [Numpy-discussion] Numpy savetxt: change decimal separator

2009-09-24 Thread Gökhan Sever
On Thu, Sep 24, 2009 at 2:07 AM, wrote: > > Hello everyone, > > I save data to a file with the following statement: > > np.savetxt(fileName, transpose((average_dist, std_deviation, maximum_dist, > sum_of_dist)), delimiter = ';', fmt='%6.10f') > > is there a possibility to change the decimal seper

[Numpy-discussion] Numpy savetxt: change decimal separator

2009-09-24 Thread markus . proeller
Hello everyone, I save data to a file with the following statement: np.savetxt(fileName, transpose((average_dist, std_deviation, maximum_dist, sum_of_dist)), delimiter = ';', fmt='%6.10f') is there a possibility to change the decimal seperator from a point to comma ? And another question I imp