aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/AsciiQuickReference.txt
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-02-18 16:24:15 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-02-18 16:24:15 +0000
commiteb2cc8f5023230149c031e2b266a620c2f8aafe3 (patch)
tree697d18538670754cc74074d43d9e6e55cdb136db /doc/AsciiQuickReference.txt
parent8f83b37b2aef0992985df16352adc8788f9d50ce (diff)
patch from Jitse Niesen: fix ascii quick ref matlab operator '
Diffstat (limited to 'doc/AsciiQuickReference.txt')
-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)