| Author |
Comment/Response |
Michael
|
06/29/12 12:53pm
Try
Export["alt.txt", sample, "List", "LineSeparators" -> " "]
I don't know an easier way to add a newline (in either your original Export or the above) than this:
Export["alt.txt",
ExportString[sample, "List", "LineSeparators" -> " "] <> "\n"]
(In case you want a newline. I did.)
URL: , |
|