MathTop

rref 函数

返回矩阵的简化行阶梯形。

语法

  • rref(matrix)
  • ReducedRowEchelonForm(matrix)

参数与选项

matrix表示矩阵的嵌套列表。

示例

  1. 简化行阶梯形ReducedRowEchelonForm([[1, 2, 1], [2, 4, 2]])返回 [[1, 2, 1], [0, 0, 0]]。