rref 函数
返回矩阵的简化行阶梯形。
语法
rref(matrix)ReducedRowEchelonForm(matrix)
参数与选项
matrix | 表示矩阵的嵌套列表。 |
|---|
示例
- 简化行阶梯形
ReducedRowEchelonForm([[1, 2, 1], [2, 4, 2]])返回 [[1, 2, 1], [0, 0, 0]]。
返回矩阵的简化行阶梯形。
rref(matrix)ReducedRowEchelonForm(matrix)matrix | 表示矩阵的嵌套列表。 |
|---|
ReducedRowEchelonForm([[1, 2, 1], [2, 4, 2]])返回 [[1, 2, 1], [0, 0, 0]]。