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 |
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]