]> gitweb.michael.orlitzky.com - mjotex.git/commitdiff
Add the \boundedops macro to mjo-linear_algebra.
authorMichael Orlitzky <michael@orlitzky.com>
Sat, 30 Apr 2016 12:32:38 +0000 (08:32 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sat, 30 Apr 2016 12:32:38 +0000 (08:32 -0400)
mjo-linear_algebra.tex

index b3d4296f1b968e0da72a2d553c637bfe93861819..9e32d2179a25e1d061eeeb1f063ed14bcdf36284 100644 (file)
 
 % An inline column vector, with parentheses and a transpose operator.
 \newcommand*{\colvec}[1]{ \left( {#1} \right)^{T} }
+
+% Bounded linear operators on some space. The required argument is the
+% domain of those operators, and the optional argument is the
+% codomain. If the optional argument is omitted, the required argument
+% is used for both.
+\newcommand*{\boundedops}[2][]{
+  \mathcal{B}\of{ {#2}
+    \if\relax\detokenize{#1}\relax
+      {}%
+    \else
+      {,{#1}}%
+    \fi
+  }
+}