Good news, we now have the exponentiation for all matrices on the master branch, now even non-diagonalizable matrices can be exponentiated:
>>> m = Matrix([[0,1],[0,0]]) >>> exp(m) Matrix([ [1, 1], [0, 1]]) On Monday, July 15, 2013 9:09:26 PM UTC+2, F. B. wrote: > > Here we go: > > https://github.com/sympy/sympy/pull/2292 > -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sympy. For more options, visit https://groups.google.com/groups/opt_out.
