diff --git a/docs.html b/docs.html
index 7e04ea90..09754715 100644
--- a/docs.html
+++ b/docs.html
@@ -4667,6 +4667,7 @@ X.swap_rows(0,4);
See also:
@@ -5768,15 +5769,15 @@ Member functions of any matrix or vector expression
For real (non-complex) matrix:
- .t() provides a transposed copy of the matrix
-- .st() not applicable
+- .st() is not applicable
For complex matrix:
-- .t() provides a Hermitian transpose (ie. the conjugate of the elements is taken during the transpose)
-- .st() provides a transposed copy without taking the conjugate of the elements
+- .t() provides a Hermitian (conjugate) transposed copy (ie. signs of imaginary components are flipped)
+- .st() provides a simple transposed copy (ie. signs of imaginary components are not flipped)
@@ -5794,9 +5795,12 @@ mat B = A.t();
See also:
@@ -10827,8 +10831,9 @@ See also:
fliplr() & flipud()
shift()
sort()
-.swap_rows() & .swap_cols()
+trans()
.t()
+.swap_rows() & .swap_cols()
@@ -11439,15 +11444,15 @@ See also:
For real (non-complex) matrix:
- trans() provides a transposed copy of the matrix
-- strans() not applicable
+- strans() is not applicable
For complex matrix:
-- trans() provides a Hermitian transpose (ie. the conjugate of the elements is taken during the transpose)
-- strans() provides a transposed copy without taking the conjugate of the elements
+- trans() provides a Hermitian (conjugate) transposed copy (ie. signs of imaginary components are flipped)
+- strans() provides a simple transposed copy (ie. signs of imaginary components are not flipped)
@@ -11467,6 +11472,11 @@ mat C = A.t(); // equivalent to trans(A), but more compact