Lesson 12: Making Block Matrices in LATEX

  • 按列分块

    $$
    	\left[
    	\begin{array}{c|c|c|c}
    	A & Ab & \cdots & A^{n-1}b
    	\end{array}
    	\right]
    	$$
  • 左右分块

    $$
    	\left[
    	\begin{array}{cccc|c}
    	a_{11}&a_{12}&\cdots&a_{1n}&b_1\\
    	a_{21}&a_{22}&\cdots&a_{2n}&b_2\\
    	\vdots&&\ddots&\vdots&\vdots\\
    	a_{n1}&a_{n2}&\cdots&a_{nn}&b_n\\
    	\end{array}
    	\right]
    	$$
  • 四个对角

    $$
    	C=
    	\left[
    	\begin{array}{c|c}
    	A& B \\ \hline 
    	C& D
    	\end{array}
    	\right]
    	$$

相关文章:

  • 2022-12-23
  • 2021-11-05
  • 2021-09-13
  • 2021-11-13
  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-02-20
  • 2022-12-23
  • 2021-12-29
  • 2022-01-22
  • 2021-11-23
  • 2022-12-23
相关资源
相似解决方案