blrchk {binarySimCLF}R Documentation

CLF Compatibility 2

Description

Checks for CLF compatibility. Unlike blrchk1(), this function works on the covariance matrix V. It calls blrchk1(). It is RECOMMENDED that the user use this function or blrchk1() first before engaging in the actual simulation.

Usage

blrchk(u, V)

Arguments

u Mean vector
V Covariance matrix

Value

Returns a logical indicating CLF compatibility; TRUE denoting CLF compatibility and FALSE otherwise.

See Also

blrchk1, binarySimCLF.

Examples

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

    V = cor2var(R,mu); V
    clf.compat = blrchk(mu,V); clf.compat

[Package binarySimCLF version 1.0 Index]