ReducedRowEchelonForm 命令
- ReducedRowEchelonForm( <Matrix> )
-
返回矩阵的 简化行阶梯形 。
-
ReducedRowEchelonForm({{1, 6, 4}, {2, 8, 9}, {4, 5, 6}})生成矩阵 \( \begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{pmatrix}\)。 -
ReducedRowEchelonForm({{2, 10, 11, 4}, {2, (-5), (-6), 12}, {2, 5, 3, 2}})生成矩阵 \( \begin{pmatrix} 1 & 0 & 0 & 5\\ 0 & 1 & 0 & -2.8\\ 0 & 0 & 1 & 2\end{pmatrix}\)。
CAS 语法
- ReducedRowEchelonForm( <Matrix> )
-
返回矩阵的 简化行阶梯形 。
-
ReducedRowEchelonForm({{1, 6, 4}, {2, 8, 9}, {4, 5, 6}})生成矩阵 \( \begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{pmatrix}\)。 -
ReducedRowEchelonForm({{2, 10, 11, 4}, {2, (-5), (-6), 12}, {2, 5, 3, 2}})生成矩阵 \( \begin{pmatrix} 1 & 0 & 0 & 5\\ 0 & 1 & 0 & \frac{-14}{5} \\ 0 & 0 & 1 & 2\end{pmatrix}\)。