我很难创建一个Householder 矩阵。
M = \left(
\begin{array}{c | c c c c}
1 & 0 & 0 & 0 & 0 \\ \hline
0 & \\
0 & H_{u} \in \mathbb{R}^{4 \times 4} \\
0 & \\
0 & \\
\end{array}
\right)
答案1
答案2
嵌套matrix
内部array
:
\documentclass{article}
\usepackage{amsmath,amssymb}
\newcommand{\RR}{\mathbb{R}}
\begin{document}
\[
M=\left(
\begin{array}{c | c}
1 & \begin{matrix} 0 & 0 & 0 & 0 \end{matrix} \\
\hline
\begin{matrix} 0 \\ 0 \\ 0 \\ 0 \end{matrix} &
H_u\in\RR^{4\times 4}
\end{array}
\right)
\]
\end{document}