答案1
这个矩阵乘积的编码非常简单,只需花点时间用索引变量写出组成公式的四个矩阵即可。
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
%>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
\begin{equation*}
\begin{pmatrix}
y_1 \\
\vdots \\
y_n
\end{pmatrix}=
\begin{pmatrix}
1 & x_{12} & \ldots & x_{1k} \\
\vdots & \vdots & \ddots & \vdots \\
1 & x_{N2} & \ldots & x_{Nk}
\end{pmatrix}
\begin{pmatrix}
\beta_1 \\
\vdots \\
\beta_k
\end{pmatrix}
+
\begin{pmatrix}
u_1 \\
\vdots \\
u_k
\end{pmatrix}
\end{equation*}
% <<<<<<<<<<<<<<<<<<<<<<<<<<<<<
\end{document}