R/rt_scaled.R

Defines functions rt_scaled

Documented in rt_scaled

## File Name: rt_scaled.R
## File Version: 0.04

rt_scaled <- function(n, location=0, shape=1, df=Inf)
{
    x <- stats::rt( n, df=df, ncp=0 )
    x <- location + shape * x
    return(x)
}
alexanderrobitzsch/mdmb documentation built on July 18, 2024, 11:14 p.m.