find_row_and_column_spaces: Function: Row and column spaces

Description Usage Arguments Value Examples

Description

Performs Gauss Elimination with Partial Pivoting of A and returns a list containing the row and column vectors of the given matrix

Usage

1

Arguments

A

matrix of real numbers.

Value

Returns a list containing the matrix A reduced by rows and the rows and columns vectors.

Examples

1
2
3
4
5
6
7
B <- matrix(sample.int(10, 12, replace = TRUE),  nrow = 3)
find_row_and_column_spaces(B)
A <- matrix(c(1,  1,
              1, -1,
              1,  0,
              1,  0), byrow = TRUE, ncol = 2)
find_row_and_column_spaces(A)

JessicaSousa/INF2471.P1 documentation built on May 21, 2019, 4:03 a.m.