| error_functions | R Documentation |
Functions to compute the error function, complementary error function, and their inverses.
erf(x)
erfc(x)
erf_inv(p)
erfc_inv(p)
x |
Input numeric value |
p |
Probability value (0 <= p <= 1) |
A single numeric value with the computed error function, complementary error function, or their inverses.
Boost Documentation for more details
# Error function
erf(0.5)
# Complementary error function
erfc(0.5)
# Inverse error function
erf_inv(0.5)
# Inverse complementary error function
erfc_inv(0.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.