Matrix([[1,0],[0,1]])**2
= Matrix([
[1, 0],
[0, 1]])

Matrix([[1,0],[0,1]])**x
= Matrix([
[1, 0],
[0, 1]])

MatPow (Matrix([[1,0],[0,1]]), 2).doit ()
= Matrix([
[1, 0],
[0, 1]])

MatPow (Matrix([[1,0],[0,1]]), x).doit ()
= *Matrix([*
*[1, 0],*
*[0, 1]])**x*

-- 
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 sympy+unsubscr...@googlegroups.com.
To post to this group, send email to sympy@googlegroups.com.
Visit this group at https://groups.google.com/group/sympy.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sympy/90236af4-704b-4b6f-93d3-60c3d40b49a8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to