https://github.com/cran/mvtnorm
Raw File
Tip revision: 5aceb04d886a8f0b76b661908d92d383fcbe01ed authored by Torsten Hothorn on 19 January 2012, 00:00:00 UTC
version 0.9-9992
Tip revision: 5aceb04
tvpackAux.c
#include<R.h>
#include<Rmath.h>

double F77_SUB(phid)(double *x){
  return pnorm(*x, 0.0, 1.0, 1, 0);
}

double F77_SUB(studnt)(int *nu, double *x){
  return pt(*x, *nu, 1, 0);
}
back to top