// Creates a sine/cosing table in the "Results" window // and then creates a duplicate in another window. table1 = "Results"; Table.create(table1); for (n=0,row=0; n<=2*PI; n+=0.1,row++) { Table.set("n", row, n); Table.set("sin(n)", row, sin(n)); Table.set("cos(n)", row, cos(n)); } Table.update; table2 = "Sine/Cosine Table"; Table.create(table2); headings = split(Table.headings(table1)); for (col=0; col