In the following code, how can I arrange the matrices as two adjacent matrices and one below them in the middle?
Code: Select all
\documentclass[a4paper,12pt,openany,oneside]{memoir}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{aligned}
\mathbf{H}_A&=
\begin{pmatrix}
h_A^{(1,1)}&h_A^{(1,2)} \dots &h_A^{(1,M_A)}\\
h_A^{(2,1)}&h_A^{(2,2)} \dots &h_A^{(2,M_A)}\\
\vdots & \vdots & \vdots\\
h_A^{(N_A,1)}&h_A^{(N_A,2)} \dots &h_A^{(N_A,M_A)}
\end{pmatrix} \\
\mathbf{H}_B&=
\begin{pmatrix}
h_B^{(1,1)}&h_B^{(1,2)} \dots &h_B^{(1,M_B)}\\
h_B^{(2,1)}&h_B^{(2,2)} \dots &h_B^{(2,M_B)}\\
\vdots & \vdots & \vdots\\
h_B^{(N_B,1)}&h_B^{(N_B,2)} \dots &h_B^{(N_B,M_B)}
\end{pmatrix}\\
\mathbf{H}_C&=
\begin{pmatrix}
h_C^{(1,1)}&h_C^{(1,2)} \dots &h_C^{(1,M_A)}\\
h_C^{(2,1)}&h_C^{(2,2)} \dots &h_C^{(2,M_A)}\\
\vdots & \vdots & \vdots\\
h_A^{(N_B,1)}&h_A^{(N_B,2)} \dots &h_C^{(N_B,M_A)}
\end{pmatrix}\\
\end{aligned}\label{ChannelMatrices}
\end{equation}
\end{document}