R/are.pargno.valid.R

"are.pargno.valid" <-
function(para,nowarn=FALSE) {
    if(! is.gno(para)) return(FALSE)
    if(any(is.na(para$para))) return(FALSE)

    A <- para$para[2]
    op <- options()
    GO <- TRUE
    if(nowarn == TRUE) options(warn=-1)
    if(A <= 0) {
       warning("Parameter A is not > 0, invalid")
       GO <- FALSE
    } 
    options(op)
    if(GO) return(TRUE)
    return(FALSE)
}

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.