回 帖 发 新 帖 刷新版面

主题:fortran中有正态函数吗

要计算一个正态函数值 Fortran中有正态函数可以直接调用吗?

回复列表 (共3个回复)

沙发

Fortran 标准中并没有规定 正态分布函数,但可以用 Fortran 语言去实现它。

板凳

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 楼

API函数介绍的书,很少是介绍木马所利用的接口的,如果是找内核的接口,我觉得你可以去图书馆借一下《windows内核编程》这本书。

我来回复

您尚未登录,请登录后再回复。点此登录或注册