rvgs.h

来自「在linux下面实现的单纯性算法的源代码」· C头文件 代码 · 共 29 行

H
29
字号
/* -------------------------------------------------------------  * Name            : rvgs.h (header file for the library rvgs.c) * Author          : Steve Park & Dave Geyer * Language        : ANSI C * Latest Revision : 11-03-96 * --------------------------------------------------------------  */#if !defined( _RVGS_ )#define _RVGS_long Bernoulli(double p);long Binomial(long n, double p);long Equilikely(long a, long b);long Geometric(double p);long Pascal(long n, double p);long Poisson(double m);double Uniform(double a, double b);double Exponential(double m);double Erlang(long n, double b);double Normal(double m, double s);double Lognormal(double a, double b);double Chisquare(long n);double Student(long n);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?