StephenMKauffman wrote: > I've just started using SAGE and my first question is where I have an > integer matrix, 9x22 in this case, I get the following output > > sage: ALPHA*ALPHA.transpose() > > [1 0 0 0 0 0 0 0 0] > [0 1 0 0 0 0 0 0 0] > [0 0 1 0 0 0 0 0 0] > [0 0 0 1 0 0 0 0 0] > [0 0 0 0 1 0 0 0 0] > [0 0 0 0 0 1 0 0 0] > [0 0 0 0 0 0 1 0 0] > [0 0 0 0 0 0 0 1 0] > [0 0 0 0 0 0 0 0 1] > sage: ALPHA.transpose()*ALPHA > 22 x 22 dense matrix over Integer Ring > sage: > > Why in the second case does the matrix fail to display or how do I > make it show the result? I realize that for very large matrices > displaying in the shell might not be desirable, but this matrix isn't > that large. Also when I type > > sage: ALPHA.transpose() > 22 x 9 dense matrix over Integer Ring > sage: > > still no display. Thanks > >
sage: m=random_matrix(ZZ,25) sage: print m.str() Thanks, Jason --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---
