macro_rules! rt {
    ( $n:expr, $df:expr ) => { ... };
}
Expand description

R like random Student’s t

Examples

#[macro_use]
extern crate peroxide;
use peroxide::fuga::*;

fn main() {
    let a = rt!(5, 1);
    println!("{:?}", a);
}