R/frobenius.norm.R

Defines functions frobenius.norm

Documented in frobenius.norm

frobenius.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.