Eigen_isInvertible: Check invertibility

View source: R/EigenR.R

Eigen_isInvertibleR Documentation

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

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

EigenR documentation built on May 18, 2022, 9:05 a.m.