is.normalized: Normalized Hadamard Matrix

View source: R/normalizeH.R

is.normalizedR 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)

normalizeH documentation built on July 21, 2022, 5:10 p.m.