如何在这两个垂直堆叠的矩阵的右侧画一个花括号?
这是矩阵的 MWE:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\begin{document}
$$
X = \begin{bmatrix}
x & \cdots & x\\
\vdots & \ddots & \vdots\\
x & \cdots & x
\end{bmatrix}
$$
$$
Y = \begin{bmatrix}
y & \cdots & y\\
\vdots & \ddots & \vdots\\
y & \cdots & y
\end{bmatrix}
$$
\end{document}
答案1
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\left.
\begin{aligned}
X &= \begin{bmatrix}
x & \cdots & x\\
\vdots & \ddots & \vdots\\
x & \cdots & x
\end{bmatrix}
\\
Y &= \begin{bmatrix}
y & \cdots & y\\
\vdots & \ddots & \vdots\\
y & \cdots & y
\end{bmatrix}
\end{aligned}x
\right\}Z
\]
\end{document}