stringout error for large expressions



On 2/19/08, Tim Akhurst <takhurst at sun.ac.za> wrote:

> I am trying to write the expanded form of a matrix determinant to file.
> I have successfully done this for a number of matrices, however I am
> encountering 'stringout errors' with certain matrices.

Try
stringout ("foo.out", whatever), grind=true;
which will output whatever in a somewhat more aesthetic fashion,
but the main point is that it goes down a different path than with
grind=false (the default).

Or try
save ("foo.out", whatever);
which saves whatever as a Lisp expression.

If you have time, please enter a bug report. Follow "Submit new" at:
http://sourceforge.net/tracker/?atid=104933&group_id=4933&func=browse

best

Robert Dodier