Learn R Programming

EigenR (version 1.2.3)

Eigen_isSurjective: Check surjectivity

Description

Checks whether a matrix represents a surjective linear map.

Usage

Eigen_isSurjective(M)

Arguments

M

a matrix, real or complex

Value

A Boolean value indicating whether M represents a surjective linear map.

Examples

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

Run the code above in your browser using DataLab