R/Lcomoment.correlation.R

"Lcomoment.correlation" <-
function(L2) {
  if(L2$order != 2) {
    warning("L-comoment matrix argument is not of order 2")
    return()
  }

  # Following Serfling and Xiao (2006)
  #  L-correlations are the L-comoment coefficents of L-scale
  #  The diagonal of LC are the coefficients of L-variation
  LC <- Lcomoment.coefficients(L2,L2)
  return(LC)
}

Try the lmomco package in your browser

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

lmomco documentation built on Aug. 30, 2023, 5:10 p.m.