Learn R Programming

EigenR (version 1.2.3)

Eigen_isInvertible: Check invertibility

Description

Checks whether a matrix is invertible.

Usage

Eigen_isInvertible(M)

Arguments

M

a matrix, real or complex

Value

A Boolean value indicating whether M is invertible.

Examples

Run this code
# NOT RUN {
set.seed(666L)
M <- matrix(rpois(25L, 1), 5L, 5L)
Eigen_isInvertible(M)
# }

Run the code above in your browser using DataLab