I could not code a vertical vector with several vertical curly braces outside the square bracket of the vector. The best thing I have obtained so far is by using rcases from mathtools package that gives me a vertical vector with the corresponding vertical curly braces inside the square bracket of the vector. My code is as the following:
\documentclass{article}
\usepackage{amsmath,mathtools}
\begin{document}
\begin{equation}
\mathcal{O}(t) = \left[ \begin{array}{c}
\begin{rcases} c_1^\top \ \vdots \ c_p^\top \end{rcases}C\ \begin{rcases} c_1^\top A \ \vdots \ c_p^\top A \end{rcases} CA \ \vdots \ \begin{rcases}c_1^\top A^{t-1} \ \vdots \ c_p^\top A^{t-1}\end{rcases} CA^{t-1}
\end{array}\right].
\end{equation}
\end{document}
which is still not accepted. Any hints that can help me to bring out the vertical curly braces would be greatly appreciated.



mathtoolsloadsamsmath, it's not necessary to load the latter separately. – barbara beeton Feb 15 '22 at 01:54