R/chi2cdf.R

Defines functions chi2cdf

Documented in chi2cdf

chi2cdf <-
function(x, n)
  {
    ###  Rick Aster's matlab function is easy in R
    ###  use pchisq
    return(pchisq(x, n) )

  }

Try the PEIP package in your browser

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

PEIP documentation built on Aug. 21, 2023, 9:10 a.m.