https://github.com/cran/clinfun
Raw File
Tip revision: a0133c37d5b98384d9d98405764c48d03dfce389 authored by Venkatraman E. Seshan on 16 April 2010, 00:00:00 UTC
version 0.8.10
Tip revision: a0133c3
fdnorm.c
#include <R.h>
#include <Rmath.h>
/* Fortran function for standard normal PDF, CDF */
double F77_SUB(fdnorm)(double *x)
{
  return dnorm(*x, 0.0, 1.0, 0); 
}
back to top