| blrchk1 {binarySimCLF} | R Documentation |
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.
blrchk1(u, B)
u |
Mean vector. |
B |
An intermediate matrix. |
Returns a logical indicating CLF compatibility: TRUE for compatible and
FALSE for not compatible.
# 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