Title: | Normalize Hadamard Matrix |
---|---|
Description: | Normalize a given Hadamard matrix. A Hadamard matrix is said to be normalized when its first row and first column entries are all 1, see Hedayat, A. and Wallis, W. D. (1978) "Hadamard matrices and their applications. The Annals of Statistics, 1184-1238." <doi:10.1214/aos/1176344370>. |
Authors: | Baidya Nath Mandal [aut, cre] |
Maintainer: | Baidya Nath Mandal <[email protected]> |
License: | GPL (>= 2) |
Version: | 1.0.0 |
Built: | 2025-02-13 02:55:17 UTC |
Source: | https://github.com/cran/normalizeH |
Converts a given Hadamard matrix to its normalized form
normalizeH(H)
normalizeH(H)
H |
A Hadamard matrix |
A normalize Hadamard matrix of same dimension as the input matrix.
Baidya Nath Mandal <[email protected]>
H = matrix(c(1,1,1,-1),nrow = 2) normalizeH(H) require(HadamardR) h8 <- Hadamard_Matrix(8) normalizeH(h8)
H = matrix(c(1,1,1,-1),nrow = 2) normalizeH(H) require(HadamardR) h8 <- Hadamard_Matrix(8) normalizeH(h8)