diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-08-31 06:21:08 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-08-31 06:21:08 -0700 |
commit | 5717a5656e0486daba71ae0eae733f252840cffd (patch) | |
tree | d541a482d3d4c82710e35d7042e133283e698cfb /arith.h | |
parent | a3d69ff4b9ca5c485f9d199a2f071aa61469a55f (diff) | |
download | txr-5717a5656e0486daba71ae0eae733f252840cffd.tar.gz txr-5717a5656e0486daba71ae0eae733f252840cffd.tar.bz2 txr-5717a5656e0486daba71ae0eae733f252840cffd.zip |
New function: inverse of cumulative normal dist.
* arith.c (inv_cum_norm): New function.
* arith.h (inv_cum_norm): Declared.
* eval.c (eval_init): Register inv-cum-norm intrinsic.
* txr.1: Documented.
Diffstat (limited to 'arith.h')
-rw-r--r-- | arith.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -37,6 +37,7 @@ val in_int_ptr_range(val bignum); ucnum c_unum(val num); val unum(ucnum u); val cum_norm_dist(val x); +val inv_cum_norm(val p); val n_choose_k(val n, val k); val n_perm_k(val n, val k); val divides(val d, val n); |