normalise2d | R Documentation |
Normalises a matrix towards unit p norm row wise or column wise. By default, p = 2 is used. To normalise row wise, use axis=0. To normalise column wise, use axis=1. as the square root of sum of square of values in the given vector.
normalise2d(mat, pnorm = 2L, axis = 1L)
mat |
numeric matrix |
pnorm |
integer value, default value=2 |
axis |
integer (0 or 1), row wise = 0, column wise = 1 |
normalised numeric matrix
mat <- matrix(runif(12), 3, 4)
## normalise matrix row wise
r <- normalise2d(mat, axis=0)
## normalise matrix column wise
r <- normalise2d(mat, axis=1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.