quantile-x ( a b N q -- x )


Vocabulary
math.statistics

Definition
USING: kernel math ;

IN: math.statistics

: quantile-x ( a b N q -- x ) [ + ] dip * + 1 - ; inline