calc_E1 {UNDO} | R Documentation |
A function used to calculate the E1 measurement when the real mixing matrix is provided
calc_E1(A, Aest)
A |
real mixing matrix |
Aest |
estimated mixing matrix |
E1 measurement (numeric)
Niya Wang <wangny@vt.edu>
A <- matrix(runif(4),2,2) Aest <- matrix(runif(4),2,2) E1 <- calc_E1(A,Aest) # to calculate the similarity of two randowm 2*2 matrix