QisInvertible {RationalMatrix}R Documentation

Check invertibility

Description

Checks whether a square rational matrix is invertible.

Usage

QisInvertible(M)

Arguments

M

a square matrix such that as.character(Mij) is a quoted integer or a quoted fraction for each entry Mij

Value

A Boolean value indicating whether M is invertible.

Examples

library(RationalMatrix)
set.seed(666L)
M <- matrix(rpois(25L, 1), 5L, 5L)
QisInvertible(M)

[Package RationalMatrix version 1.0.0 Index]