Gostaria que os colchetes verticais e horizontais estivessem alinhados com a matriz. O código a seguir obviamente não faz a coisa certa. Qualquer pista?
\[
\text{\footnotesize \(m\) rows}
\underbrace{\left\{\begin{array}{cccc}
\bullet&\bullet&\ldots&\bullet\\
\bullet&\bullet&\ldots&\bullet\\
\vdots&\vdots&&\vdots\\
\bullet&\bullet&\ldots&\bullet
\end{array}\right.}_{\text{\footnotesize \(n\) columns}},
\]
Responder1
Aqui está uma solução com cases – e uma variante para perfeccionistas:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\text{\footnotesize \(m\) rows}
\begin{cases}\;
\underbrace{%
\begin{matrix}
\bullet&\bullet&\ldots&\bullet\\
\bullet&\bullet&\ldots&\bullet\\
\vdots&\vdots&&\vdots\\
\bullet&\bullet&\ldots&\bullet
\end{matrix}
}_{\text{\footnotesize \(n\) columns}}\vspace*{-3.6ex}
\end{cases}
\]
\vspace{1cm}
\[
\text{\footnotesize \(m\) rows}
\begin{cases}\;
\raisebox{0pt}[\dimexpr\height-0.7ex][\dimexpr\depth-3.8ex]{$\displaystyle\underbrace{%
\begin{matrix}
\bullet&\bullet&\ldots&\bullet\\
\bullet&\bullet&\ldots&\bullet\\
\vdots&\vdots&&\vdots\\
\bullet&\bullet&\ldots&\bullet
\end{matrix}
}_{\text{\footnotesize \(n\) columns}} $}
\end{cases}
\]
\end{document}
Responder2
Isso fará mais ou menos o que você deseja. Mas pode haver uma solução melhor.
\documentclass{article}
\begin{document}
\[
\underbrace{
\begin{array}{cccc}
\bullet & \bullet & \ldots & \bullet \\
\bullet & \bullet & \ldots & \bullet \\
\vdots & \vdots & & \vdots \\
\bullet & \bullet & \ldots & \bullet
\end{array}
}_{n columns}
\hspace{-1em}
\left.
\begin{array}{cccc}
\\
\\
\\
\,
\end{array}
\right\} n rows
\]
\end{document}
Mesmo que você ainda deva fornecer um exemplo prático mínimo para tornar sua pergunta uma boa pergunta.