|
|
last edited 17 years ago |
1 | ||
Editor:
Time: 2007/11/17 22:06:21 GMT-8 |
||
Note: shut up greg !!! |
changed: - It can be interesting to add a conjugateTranspose operation in MatrixCategory RectangularMatrixCategory and SquareMatrixCategory. For example conjugateTranspose(a) * a will give a hermitian positive definite matrix. From unknown Thu Jul 28 11:34:17 -0500 2005 From: unknown Date: Thu, 28 Jul 2005 11:34:17 -0500 Subject: Message-ID: <20050728113417-0500@page.axiom-developer.org> \begin{axiom} a:=matrix ([[%i,7],[6,3*%i]]) b := map(conjugate,transpose(a)) * a \end{axiom} Determinant and eigenvalues of this matrix are always real and positive. For example, \begin{axiom} determinant(b) \end{axiom}
It can be interesting to add a conjugateTranspose operation in MatrixCategory? RectangularMatrixCategory? and SquareMatrixCategory?. For example conjugateTranspose(a) * a will give a hermitian positive definite matrix.
(1) -> a:=matrix ([[%i,7], [6, 3*%i]])
(1) |
b := map(conjugate,transpose(a)) * a
(2) |
Determinant and eigenvalues of this matrix are always real and positive. For example,
determinant(b)
(3) |