Normcol {HadamardR} | R Documentation |
Normcol Normcol performs the Normalisation of column the given matrix.
Description
Normcol Normcol performs the Normalisation of column the given matrix.
Usage
Normcol(m)
Arguments
m |
Matrix |
Details
For the given matrix of the first column of the all the -1 elements converting +1 without alter the property of the matrix.
Value
Normalised matrix
Examples
PaleyI(8)
# [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8]
#[1,] 1 1 1 1 1 1 1 1
#[2,] -1 1 -1 -1 1 -1 1 1
#[3,] -1 1 1 -1 -1 1 -1 1
#[4,] -1 1 1 1 -1 -1 1 -1
#[5,] -1 -1 1 1 1 -1 -1 1
#[6,] -1 1 -1 1 1 1 -1 -1
#[7,] -1 -1 1 -1 1 1 1 -1
#[8,] -1 -1 -1 1 -1 1 1 1
Normcol(PaleyI(8))
# [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8]
#[1,] 1 1 1 1 1 1 1 1
#[2,] 1 -1 1 1 -1 1 -1 -1
#[3,] 1 -1 -1 1 1 -1 1 -1
#[4,] 1 -1 -1 -1 1 1 -1 1
#[5,] 1 1 -1 -1 -1 1 1 -1
#[6,] 1 -1 1 -1 -1 -1 1 1
#[7,] 1 1 -1 1 -1 -1 -1 1
#[8,] 1 1 1 -1 1 -1 -1 -1
[Package HadamardR version 1.0.0 Index]