Supported Math Functions

 

Phoenix PML supports a majority of the intrinsic math functions in the Cmath.h library. See the fol­lowing tables for a list of supported functions. (Refer to http://www.cplusplus.com/reference/cmath/ for more information on the Cmath.h library.)

Trigonometric functions 923

Hyperbolic functions 923

Exponential and logarithmic functions 923

Power functions 924

Error and gamma functions 924

Rounding and remainder functions 924

Floating-point manipulation functions 925

Minimum, maximum, difference functions 925

Other functions available in math.h 925

Classification macro/functions 925

Comparison macro/functions 926

 

Trigonometric functions

Function

Description

cos

Compute cosine

sin

Compute sine

tan

Compute tangent

acos

Compute arc cosine

asin

Compute arc sine

atan

Compute arc tangent

atan2

Compute arc tangent with two parameters

Hyperbolic functions

Function

Description

cosh

Compute hyperbolic cosine

sinh

Compute hyperbolic sine

tanh

Compute hyperbolic tangent

acosh

Compute arc hyperbolic cosine

asinh

Compute arc hyperbolic sine

atanh

Compute arc hyperbolic tangent

Exponential and logarithmic functions

Function

Description

exp

Compute exponential function

ldexp

Generate value from significand and exponent

log

Compute natural logarithm

log10

Compute common logarithm

exp2

Compute binary exponential function

expm1

Compute exponential minus one

ilogb

Integer binary logarithm

log1p

Compute logarithm plus one

log2

Compute binary logarithm

logb

Compute floating-point base logarithm

scalbn

Scale significand using floating-point base exponent

scalbln

Scale significand using floating-point base exponent (long)

Power functions

Function

Description

pow

Raise to power

sqrt

Compute square root

cbrt

Compute cubic root

hypot

Compute hypotenuse

Error and gamma functions

Function

Description

erf

Compute error function

erfc

Compute complementary error function

tgamma

Compute gamma function

lgamma

Compute log-gamma function

Rounding and remainder functions

Function

Description

ceil

Round up value

floor

Round down value

fmod

Compute remainder of division

trunc

Truncate value

round

Round to nearest

lround

Round to nearest and cast to long integer

llround

Round to nearest and cast to long long integer

rint

Round to integral value

lrint

Round and cast to long integer

llrint

Round and cast to long long integer

nearbyint

Round to nearby integral value

remain­der

Compute remainder

Floating-point manipulation functions

Function

Description

copysign

Copy sign

nextafter

Next representable value

nextfor­ward

Next representable value toward precise value

Minimum, maximum, difference functions

Function

Description

fdim

Positive difference

fmax

Maximum value

fmin

Minimum value

Other functions available in math.h

Function

Description

fabs

Compute absolute value

abs

Compute absolute value

fma

Multiply-add

Classification macro/functions

Function

Description

isfinite

Is a finite value

isinf

Is infinity

isnormal

Is normal

signbit

Sign bit (whether the sign of x is negative)

Comparison macro/functions

Function

Description

isgreater

Is greater

isgreatereq­ual

Is greater or equal

isless

Is less

islessequal

Is less or equal

islessgreater

Is less or greater

isunordered

Is unordered

 


Last modified date:6/26/19
Certara USA, Inc.
Legal Notice | Contact Certara
© 2019 Certara USA, Inc. All rights reserved.