From: Michael Orlitzky <michael@orlitzky.com>
Date: Mon, 29 Aug 2016 00:48:28 +0000 (-0400)
Subject: Add the real matrix transpose operator.
X-Git-Tag: posZ-submitted-laa~18
X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=c674a11f42cdf7ca05680e435abbd270ab51ae13;p=mjotex.git

Add the real matrix transpose operator.
---

diff --git a/mjo-linear_algebra.tex b/mjo-linear_algebra.tex
index 380c3bf..a1d8c06 100644
--- a/mjo-linear_algebra.tex
+++ b/mjo-linear_algebra.tex
@@ -27,6 +27,10 @@
 % The adjoint of a linear operator.
 \newcommand*{\adjoint}[1]{ #1^{*} }
 
+% The ``transpose'' of a linear operator; namely, the adjoint, but
+% specialized to real matrices.
+\newcommand*{\transpose}[1]{ #1^{T} }
+
 % The ``span of'' operator. The name \span is already taken.
 \newcommand*{\spanof}[1]{ \operatorname{span}\of{{#1}} }