>>> m = Matrix([[0, 1], [0, 0]]) >>> exp(m) NotImplementedError: Exponentiation is implemented only for diagonalizable matrices
What is the best way to implement the exponentiation for non-diagonalibale matrices? I thought a way to fix it could be by Taylor expansion (hoping non-diagonalizable matrices over the complexes are nilpotent). Any better ideas? Just suggest me something and I'll try to fix it. -- 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.
