aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/AsciiQuickReference.txt
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2013-11-19 11:51:16 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2013-11-19 11:51:16 +0100
commit5d1291a4de78af16c31cf837c0d407007bd0a5a6 (patch)
tree5496dfd00ee9ae7f7fd20a0cc5bf22274f185fc1 /doc/AsciiQuickReference.txt
parent8b4dd78d57ec48dc89d548c2a671e52d62a33654 (diff)
Document how to reproduce matlab's rot90
Diffstat (limited to 'doc/AsciiQuickReference.txt')
-rw-r--r--doc/AsciiQuickReference.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/AsciiQuickReference.txt b/doc/AsciiQuickReference.txt
index 6b0a7cd6a..fc613864f 100644
--- a/doc/AsciiQuickReference.txt
+++ b/doc/AsciiQuickReference.txt
@@ -77,6 +77,7 @@ R.adjoint() // R'
R.transpose() // R.' or conj(R')
R.diagonal() // diag(R)
x.asDiagonal() // diag(x)
+R.transpose().colwise().reverse(); // rot90(R)
// All the same as Matlab, but matlab doesn't have *= style operators.
// Matrix-vector. Matrix-matrix. Matrix-scalar.