is.normalized {normalizeH} | R Documentation |
Checks whether a Hadamard matrix is normalized or not.
is.normalized(H)
H |
A Hadamard matrix |
Returns TRUE when the Hadamard matrix is normalized, otherwise returns FALSE.
Baidya Nath Mandal <mandal.stat@gmail.com>
h2 <- matrix(c(1,1,1,-1),nrow = 2)
is.normalized(h2)
h4 <-h2
is.normalized(h4)
h2 <- matrix(c(1,-1,1,1),nrow = 2)
is.normalized(h2)