在求解许多方程式时,您通常会将它们填充到矩阵中,然后使用高斯-乔丹消元法求解。在我的家乡,我们是这样写的,我的文档中应该显示以下内容:
图像的灰色部分是为了清晰起见,不是我需要的。我只需要带(n+1) x n
分隔线的矩阵。我还需要将多个矩阵并排显示以显示 GEM 过程:
我该怎么做?
答案1
摘自 Stefan 的回答https://tex.stackexchange.com/a/2244/46716
\documentclass{article}
\usepackage{amsmath}
\makeatletter
\renewcommand*\env@matrix[1][*\c@MaxMatrixCols c]{%
\hskip -\arraycolsep
\let\@ifnextchar\new@ifnextchar
\array{#1}}
\makeatother
\begin{document}
\[ \begin{bmatrix}[*3c|c]
2 & 5 & 0 & 7 \\
3 & 0 & 4 & 2 \\
4 & 2 & 6 & 3 \\
\end{bmatrix} \Rightarrow \begin{bmatrix}[*3c|c]
2 & 2 & 2 & 6 \\
3 & 0 & 4 & 6 \\
5 & 2 & 6 & 6 \\
\end{bmatrix} \]
\end{document}