Skip to content

Latest commit

 

History

History
167 lines (143 loc) · 11 KB

math_index.rst

File metadata and controls

167 lines (143 loc) · 11 KB
.rst-content table.docutils { width: 100%; table-layout: fixed; } table.docutils .line-block { margin-left: 0; margin-bottom: 0; } table.docutils code.literal { color: initial; } code.docutils { background: initial; }

Mathematical functions

algorithms

gcd <gcd-function-reference> greatest common divisor
lcm <lcm-function-reference> least common multiple

basic_functions

abs <abs-function-reference> absolute value
fabs <fabs-function-reference> absolute value
fabsf <fabsf-func-ref> absolute value
fabsl <fabsl-func-ref> absolute value
ceil <ceil-function-reference> ceiling function
copysign <copysign-func-ref> copy sign function
exp <exp-function-reference> exponential function
expm1 <expm1-func-ref> exponential minus 1 function
factorial <factorial-func-ref> factorial function
floor <floor-func-ref> floor function
fmod <fmod-func-ref> remainder of division function
hypot <hypot-func-ref> Pythagorean addition function
log <log-function-reference> natural logarithm function
log1p <log1p-func-ref> natural logarithm 1 plus argument function
log2 <log2-func-ref> binary logarithm function
log10 <log10-func-ref> common logarithm function
max <max-function-reference> maximum between two numbers
min <min-function-reference> minimum between two numbers
pow <pow-function-reference> power function
round <round-func-ref> round function
signbit <signbit-func-ref> sign bit function
sgn <sgn-function-reference> sign function
sqrt <sqrt-function-reference> square root function
inv_sqrt <inv_sqrt-func-ref> inverse square root function
trunc <trunc-func-ref> truncate function

hyperbolic_functions

cosh <cosh-function-reference> hyperbolic cosine function
sinh <sinh-function-reference> hyperbolic sine function
tanh <tanh-function-reference> hyperbolic tangent function
acosh <acosh-func-ref> inverse hyperbolic cosine function
asinh <asinh-func-ref> inverse hyperbolic sine function
atanh <atanh-func-ref> inverse hyperbolic tangent function

special_functions

binomial_coef <binom-func-ref> binomial coefficient
log_binomial_coef <lbinom-ref> log binomial coefficient
beta <beta-function-reference> beta function
lbeta <lbeta-func-ref> log-beta function
tgamma <tgamma-func-ref> gamma function
lgamma <lgamma-func-ref> log-gamma function
lmgamma <lmgamma-func-ref> log-multivariate gamma function
erf <erf-function-reference> error function
incomplete_beta <ib-func-ref> incomplete beta function
incomplete_gamma <ig-func-ref> incomplete gamma function
erf_inv <erf_inv-func-ref> inverse error function
incomplete_beta_inv <iib-ref> inverse incomplete beta function
incomplete_gamma_inv <iig-ref> inverse incomplete gamma function

trigonometric_functions

cos <cos-function-reference> cosine function
sin <sin-function-reference> sine function
tan <tan-function-reference> tangent function
acos <acos-function-reference> arccosine function
asin <asin-function-reference> arcsine function
atan <atan-function-reference> arctangent function
atan2 <atan2-func-ref> two-argument arctangent function