Hey. I am trying to output a file. I pretty much have down, but the only problem is I'm getting the last set of my numbers and missing the other 5000 or so sets.
Here is what I have
[
for (int i=0; i < N_plates; i++)
{
cout << i << "\t";
cout << p[i][0] << "\t";
cout << p[i][1] << "\t";
cout << p[i][2] << endl;
ofstream out("C:\\Users\\Yaser\\Documents\\myfile.txt");
out << p[i][0] << "\t";
out << p[i][1] << "\t";
out << p[i][2] << "\n";
}