Eigen_isSurjective {EigenR} | R Documentation |
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
set.seed(666L)
M <- matrix(rpois(35L, 1), 7L, 5L)
Eigen_isSurjective(M)
[Package EigenR version 1.3.0 Index]