From f1ed1b7d11049b905b9bd5e70ab227ede5b191a9 Mon Sep 17 00:00:00 2001 From: Mark Borgerding Date: Mon, 26 May 2014 08:08:28 -0400 Subject: [PATCH] added conjugate --- doc/AsciiQuickReference.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/AsciiQuickReference.txt b/doc/AsciiQuickReference.txt index c4d021624..1e74e0528 100644 --- a/doc/AsciiQuickReference.txt +++ b/doc/AsciiQuickReference.txt @@ -92,6 +92,7 @@ R.transpose() // R.' or conj(R') R.diagonal() // diag(R) x.asDiagonal() // diag(x) R.transpose().colwise().reverse(); // rot90(R) +R.conjugate() // conj(R) // All the same as Matlab, but matlab doesn't have *= style operators. // Matrix-vector. Matrix-matrix. Matrix-scalar.