I have been having trouble trying to export my 2d array "int edit_distance_array[POPULATION_SIZE+1][MAX_GEN];" to a .csv file. Whats the best way to export to the .csv i seen a few ways but nothing concrete.
Any help would be great and much appreciated.
Thank you
CSV stands for "Comma Separated Value". The columns are delimited by commas and the rows are done by return carriage. The first thing you have to do is decide what you want your file to look like when it gets open in Excel\Calc. I don't see enough code to even guess as to how you might want to view this.