
Function calculates the Reduced Row Echelon Form of a matrix.
rref(A, tol = sqrt(.Machine$double.eps), verbose = FALSE, fractions = FALSE)
Matrix to be turned into Gaussian Form.
Tolerance for checking for 0 pivot.
If TRUE, print intermediate steps.
If true, try to express nonintegers as rational numbers.
A matrix
http://socserv.mcmaster.ca/jfox/Courses/R-course-Berkeley/
# NOT RUN {
test_mat <- matrix(c(2,4,4, -6,6,12, 10,-4,-16), nrow=3, ncol=3, byrow=TRUE)
rref(test_mat)
# }
Run the code above in your browser using DataLab