added conjugate

This commit is contained in:
Mark Borgerding 2014-05-26 08:08:28 -04:00
parent 20b0747bdb
commit f1ed1b7d11

View File

@ -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.