⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gsl_statext.h

📁 常用的数学统计算法
💻 H
字号:
#ifndef __GSL_STATISTICS_EXT_DOUBLE_H__#define __GSL_STATISTICS_EXT_DOUBLE_H__#include <stddef.h>#undef __BEGIN_DECLS#undef __END_DECLS#ifdef __cplusplus# define __BEGIN_DECLS extern "C" {# define __END_DECLS }#else# define __BEGIN_DECLS /* empty */# define __END_DECLS /* empty */#endif__BEGIN_DECLS/** Standard Normal Distribution. */double standardNormalDistribution (const double);	/** Normal Distribution. */double normalDistribution (const double x, const double mean,						   const double stdDev);/** Inverse of the Standard Normal Distribution. */double inverseStandardNormalDistribution (const double);  /** Standard Normal Density. */double standardNormalDensity (const double);/** Normal Density. */double normalDensity (const double x, const double mean,					  const double stdDev);__END_DECLS#endif /* __GSL_STATISTICS_EXT_DOUBLE_H__ */

⌨️ 快捷键说明

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