normalizeH {normalizeH} | R Documentation |
Converts a given Hadamard matrix to its normalized form
normalizeH(H)
H |
A Hadamard matrix |
A normalize Hadamard matrix of same dimension as the input matrix.
Baidya Nath Mandal <mandal.stat@gmail.com>
H = matrix(c(1,1,1,-1),nrow = 2)
normalizeH(H)
require(HadamardR)
h8 <- Hadamard_Matrix(8)
normalizeH(h8)