| F2norm {rpca} | R Documentation | 
Frobenius norm of a matrix
Description
Frobenius norm of a matrix.
Usage
F2norm(M)
Arguments
| M | A matrix. | 
Value
Frobenius norm of M.
Examples
## The function is currently defined as
function (M) 
sqrt(sum(M^2))
F2norm(matrix(runif(100),nrow=5))
[Package rpca version 0.2.3 Index]