We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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}})
The text was updated successfully, but these errors were encountered:
Update reduced-row-echelon-form.java
c7bfdba
Solution for this issue: reduced-row-echelon-form.java returns wrong result acmeism#13
No branches or pull requests
The reduced-row-echelon-form.java of this example:
should return the 4x4 identity matrix.
See wolframalpha for the input:
The text was updated successfully, but these errors were encountered: