Imagej's table will not save the previous entry, rather overwrites the current row with the new info provided from the array's. Is their anyway to allow it to make a new row for every new set of data acquired?
//// Create T
Table.create('Chromataphore Data');
Table.set('PunchID',0,1);
Table.set('Count', 0, b);
Table.set('Total Area', 0, a);
ive tried "setResults()"
The easiest way is to use the default Results table with
In your case the code would look like:
This ensures that every time you call the above, the data is written to a new table row.