From 325e5cb501198b97c19c1dcc8cd8bcac0baea2c5 Mon Sep 17 00:00:00 2001 From: conrad Date: Tue, 14 Dec 2021 11:10:42 +1000 Subject: [PATCH] more details on conjugate transpose --- docs.html | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) 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:

  • For complex matrix:

  • @@ -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:
  • For complex matrix:

  • @@ -11467,6 +11472,11 @@ mat C = A.t(); // equivalent to trans(A), but more compact