Re: [eigen] ASCII quick reference for Eigen2 |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
On Wed, 18 Feb 2009, Gael Guennebaud wrote:
FYI, I added it in eigen2/doc with the suggestions I made.
There seems to be a mistake. In matlab, A' denotes the conjugate
transpose, not the transpose. The patch below fixed this.
Jitse
Index: doc/AsciiQuickReference.txt
===================================================================
--- doc/AsciiQuickReference.txt (revision 927933)
+++ doc/AsciiQuickReference.txt (working copy)
@@ -50,8 +50,8 @@
// Views, transpose, etc; all read-write except for .adjoint().
// Eigen // Matlab
- R.adjoint() // conj(R')
- R.transpose() // R'
+ R.adjoint() // R'
+ R.transpose() // R.' or conj(R')
R.diagonal() // diag(R)
x.asDiagonal() // diag(x)