On Jul 21, 10:50 pm, Tim Lahey <[EMAIL PROTECTED]> wrote: > Lastly, if the ability to work with symbolic vectors/matrices was added, > a nice thing to have would be to work with partitioned matrices and > vectors. For example: > > A = [[ B, C],[D, E]] > > where B, C, D, and E are general sub-matrices.
Look at block_matrix: sage: A = matrix(QQ, 2, 2, [3,9,6,10]) sage: block_matrix([A, -A, ~A, 100*A]) [ 3 9| -3 -9] [ 6 10| -6 -10] [-----------+-----------] [-5/12 3/8| 300 900] [ 1/4 -1/8| 600 1000] Harald --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---