主题:fortran中有正态函数吗
xjhdzh
[专家分:0] 发布于 2010-06-02 16:37:00
要计算一个正态函数值 Fortran中有正态函数可以直接调用吗?
回复列表 (共3个回复)
沙发
asymptotic [专家分:16630] 发布于 2010-06-03 00:13:00
Fortran 标准中并没有规定 正态分布函数,但可以用 Fortran 语言去实现它。
板凳
weixing1531 [专家分:2580] 发布于 2010-06-03 11:12:00
IMSL中有标准正态分布函数
ANORDF/DNORDF (Single/Double precision)
Evaluate the standard normal (Gaussian) distribution function.
Usage
ANORDF(X)
Arguments
X — Argument for which the normal distribution function is to be evaluated.
(Input)
ANORDF — Function value, the probability that a normal random variable takes
a value less than or equal to X. (Output)
ANORIN/DNORIN (Single/Double precision)
Evaluate the inverse of the standard normal (Gaussian) distribution function.
Usage
ANORIN(P)
Arguments
P — Probability for which the inverse of the normal distribution function is to be
evaluated. (Input)
P must be in the open interval (0.0, 1.0).
ANORIN — Function value. (Output)
The probability that a standard normal random variable takes a value less than or
equal to ANORIN is P.
3 楼
忆轩宇情缘 [专家分:0] 发布于 2010-06-10 06:33:00
API函数介绍的书,很少是介绍木马所利用的接口的,如果是找内核的接口,我觉得你可以去图书馆借一下《windows内核编程》这本书。
我来回复