blrchk1 {binarySimCLF}R Documentation

CLF Compatibility 1

Description

Checks for CLF compatibility given an intermediate matrix B which is obtained by B = allReg(V) where V is the covariance matrix. If the intermediate matrix B is already computed, then it is best to use this routine. If B is not precomputed then use blrchk which requires you to give it the covariance matrix V.

Usage

    blrchk1(u, B)

Arguments

u Mean vector.
B An intermediate matrix.

Value

Returns a logical indicating CLF compatibility: TRUE for compatible and FALSE for not compatible.

See Also

blrchk, binarySimCLF.

Examples

# Checks CLF compatibility.
    R = xch(3,0.9);
    mu = c(0.4,0.5,0.6);

    V = cor2var(R,mu); V
    B=allReg(V);
    clf.compat = blrchk1(mu,B); clf.compat

[Package binarySimCLF version 1.0 Index]