Learn R Programming

fungible (version 2.2.2)

normF: Compute the Frobenius norm of a matrix

Description

A function to compute the Frobenius norm of a matrix

Usage

normF(X)

Value

The Frobenius norm of X.

Arguments

X

A matrix.

Author

Niels Waller

Examples

Run this code

data(BadRLG)
out <- smoothLG(R = BadRLG, Penalty = 50000)
cat("\nGradient at solution:", out$gr,"\n")
cat("\nNearest Correlation Matrix\n")
print( round(out$RLG,8) )
cat("\nFrobenius norm of (NPD - PSD) matrix\n")
print(normF(BadRLG - out$RLG ))

Run the code above in your browser using DataLab