is.normalized {normalizeH} | R Documentation |
Normalized Hadamard Matrix
Description
Checks whether a Hadamard matrix is normalized or not.
Usage
is.normalized(H)
Arguments
H |
A Hadamard matrix |
Value
Returns TRUE when the Hadamard matrix is normalized, otherwise returns FALSE.
Author(s)
Baidya Nath Mandal <mandal.stat@gmail.com>
Examples
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)
[Package normalizeH version 1.0.0 Index]