aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--doc/AsciiQuickReference.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/AsciiQuickReference.txt b/doc/AsciiQuickReference.txt
index f51f1e206..d3d4f72c6 100644
--- a/doc/AsciiQuickReference.txt
+++ b/doc/AsciiQuickReference.txt
@@ -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)