Created
February 10, 2015 14:40
-
-
Save davidshepherd7/d9fe1ae929e3dde22c1d to your computer and use it in GitHub Desktop.
Scaled block matrices in LaTeX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\newcommand{\scalemath}[2]{\scalebox{#1}{\begin{math} {#2} \end{math}}} | |
\newcommand{\Aprime}{\scalemath{0.5}{\begin{matrix} \Amm & \Abound \\ \zm & -\Idm \end{matrix}}} | |
\newcommand{\Gprime}{\scalemath{0.5}{\begin{matrix} \zm & \zm \\ \zm & \bm \end{matrix}}} | |
\newcommand{\Qprime}{\scalemath{0.5}{\begin{matrix} \Qm \\ \zm \end{matrix}}} | |
Combining the above with the Jacobian matrix as derived in \cref{sec:llg-magn-coupl}, the complete Jacobian is | |
\begin{equation} | |
\Jm = | |
\scalemath{2}{ | |
\begin{pmatrix} | |
\Fm & \Pm & \zm \\ | |
\Qprime & \Aprime & \Gprime \\ | |
\Qm & \zm & \Amu | |
\end{pmatrix} | |
}, | |
\label{eq:16} | |
\end{equation} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment