Skip to content

reduced-row-echelon-form.java returns wrong result #13

@axkr

Description

@axkr

The reduced-row-echelon-form.java of this example:

  double[][] matrix_0 = {
    {1,0,-1,0},
    {0,1,0,-1},
    {1,-2,-1,0},
    {-1,0,3,1}
  };

  Matrix x = new Matrix(matrix_0);
  System.out.println("before\n" + x.toString() + "\n");
  x.RREF();
  System.out.println("after\n" + x.toString() + "\n");

should return the 4x4 identity matrix.

See wolframalpha for the input:

RowReduce({{1,0,-1,0},{0,1,0,-1},{1,-2,-1,0},{-1,0,3,1}})

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions