ERF

Section: Linux Programmer's Manual (3)
Updated: 2007-07-26
Index JM Home Page roff page
 

名前

erf, erff, erfl, erfc, erfcf, erfcl - 誤差関数と相補誤差関数  

書式

#include <math.h>

double erf(double x);

float erff(float x);
long double erfl(long double x); double erfc(double x);
float erfcf(float x);
long double erfcl(long double x);
-lm でリンクする。

glibc 向けの機能検査マクロの要件 (feature_test_macros(7) 参照):

このページで説明する全関数: _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE || _ISOC99_SOURCE; または cc -std=c99  

説明

erf() は x の誤差関数を返す関数で、
erf(x) = 2/sqrt(pi)* integral from 0 to x of exp(-t*t) dt

で定義されている。 erfc() 関数は x の相補誤差関数であり、 1.0 - erf(x) である。  

準拠

SVr4, 4.3BSD, C99. float 版と long double 版は C99 の要求仕様である。  

関連項目

cerf(3), exp(3)


 

Index

名前
書式
説明
準拠
関連項目

This document was created by man2html, using the manual pages.
Time: 04:31:38 GMT, November 19, 2007