rref: Compute the reduced row echelon form

View source: R/rref.R

rrefR Documentation

Compute the reduced row echelon form

Description

Compute the reduced row echelon form

Usage

rref(A, num_flops = FALSE)

Arguments

A

a matrix

num_flops

Should the number of floating point operations be returned?

Value

A matrix in reduced row echelon form

Examples


A <- matrix(c(4, 3, 2, 5, 3, 5, 5, 3, 4, 4, 6, 5), 3, 4)
B <- rref(A)

jtipton25/dasc2594 documentation built on Oct. 7, 2022, 3:46 p.m.