Doxygen Source Code Documentation
h_dnnt.c File Reference
#include "f2c.h"
#include "mathh.h"
Go to the source code of this file.
Functions | |
shortint | h_dnnt (doublereal *x) |
Function Documentation
|
Definition at line 9 of file h_dnnt.c.
00011 {
00012 return( (*x)>=0 ?
00013 floor(*x + .5) : -floor(.5 - *x) );
00014 }
|