R/hilbert.schmidt.norm.R

Defines functions hilbert.schmidt.norm

Documented in hilbert.schmidt.norm

hilbert.schmidt.norm <- function( x )
{
###
### This function is a wrapper function that uses the entrywise.norm function
### with p = 2 to obtain the fronbenius norm
###
### argument
### x = a numeric matrix or vector
###
    return( entrywise.norm( x, 2 ) )
}

Try the matrixcalc package in your browser

Any scripts or data that you put into this service are public.

matrixcalc documentation built on Sept. 15, 2022, 1:05 a.m.