| Author |
Comment/Response |
David Belisle
|
05/21/97 10:29pm
Reply to message #368 from Robert Jacobs: > I can't seem to find a simple way to print a list of x-y data to a file with a space or tab between the columns (e.g. output from x, Cos[x]): > > 1 1 > 2 3 > 3 6 > 4 9 > ... > > I need it to be in a basic format for input into other programs. > > Thanks. Try Table[{x,Cos[x]},{x,0,4}]//TableForm (can also use MatrixForm, and TableForm[...] etc.) Then execute it and copy the output literally (an option under the edit menu I think). Cheers, Dave
URL: , |
|