On Tuesday, May 10, 2011 8:26:42 AM UTC-7, Jakob Lombacher wrote: > > Hi, > > I've got a ugly matrix, that elements consists of huge symbolic > expressions. > When I try to print it via "view(H)" I get the message WARNING: Output > truncated! .... full_output.txt > > By clicking on full_output.txt I get some text file, looking like html > but it doesn't seem complete and the browser doesn't render it. > > How can I have a look at this Matrix with nice typesetting? >
This is not the perfect solution, but you can try looking at pieces of the matrix: execute view(M.submatrix(3,4,5,5)) for the 5x5 submatrix starting at row 3, column 4. Another option is view(M, viewer='pdf'). This should pop open a separate window (indeed, a separate program, whatever's suitable on your OS for viewing a pdf file) with the whole output. -- John -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org