Learn R Programming

extracat (version 1.7-6)

regmax: Regular maximality

Description

Checks whether or not a matrix fulfills the regular maximality or minimality condition.

Usage

regmax(x)
regmin(x)

Arguments

x

A symmetric data matrix.

Value

boolean

Examples

Run this code
# NOT RUN {
x <- replicate(20,rnorm(20))
cx <- abs(cor(x))
regmax(x)
regmin(x)

diag(cx) = runif(20)
regmax(x)
regmin(x)

# }

Run the code above in your browser using DataLab