findX: Calculate the left row action matrix to turn a matrix into...

Description Usage Arguments Value See Also Examples

View source: R/homology_calculation.R

Description

This function calculates the left, row action matrix X in the equation $$G = X N Y$$, where G is the original matrix and N is the Gaussian Form of the same matrix. This is done via standard Gaussian Elimination

Usage

1
findX(A)

Arguments

A

The left row matrix.

Value

A matrix.

See Also

GaussianElimination

Examples

1
2
test_mat <- matrix(c(2,4,4, -6,6,12, 10,-4,-16), nrow=3, ncol=3, byrow=TRUE)
findX(test_mat)

quhomology documentation built on May 1, 2019, 8:44 p.m.