Greetings,

After a cursory look through the documents, I could not see any
obvious method for computing a conjugate or Hermitian transpose on a
matrix in the complex double field. I have gotten only this far:

sage: m = Matrix(CDF, [[1,2*I],[3-I,-4]])
sage: m
[        1.0       2.0*I]
[3.0 - 1.0*I        -4.0]
sage: m.transpose()
[        1.0 3.0 - 1.0*I]
[      2.0*I        -4.0]
sage: (3*-I).conjugate()
3.00000000000000*I

Conjugate isn't defined for matrices, so I presume I should apply it
element wise ...

I am really enjoying experimenting with sage. Thanks for the hard work
put into it,

-carson-


--~--~---------~--~----~------------~-------~--~----~
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-forum
URLs: http://sage.math.washington.edu/sage/ and http://sage.scipy.org/sage/
-~----------~----~----~----~------~----~------~--~---

Reply via email to