normalizeH {normalizeH}R Documentation

Normalized Hadamard Matrix

Description

Converts a given Hadamard matrix to its normalized form

Usage

normalizeH(H)

Arguments

H

A Hadamard matrix

Value

A normalize Hadamard matrix of same dimension as the input matrix.

Author(s)

Baidya Nath Mandal <mandal.stat@gmail.com>

Examples

H = matrix(c(1,1,1,-1),nrow = 2)
normalizeH(H)

	require(HadamardR)
	h8 <- Hadamard_Matrix(8)
	normalizeH(h8)
	

[Package normalizeH version 1.0.0 Index]