regmax.Rd
Checks whether or not a matrix fulfills the regular maximality or minimality condition.
regmax(x) regmin(x)
A symmetric data matrix.
boolean
x <- replicate(20,rnorm(20)) cx <- abs(cor(x)) regmax(x)#> [1] FALSEregmin(x)#> [1] FALSE diag(cx) = runif(20) regmax(x)#> [1] FALSEregmin(x)#> [1] FALSE
Alexander Pilhoefer