...
Function | Bounds-checking |
---|---|
acos( x ), asin( x ) | -1 <= x && x <= 1 |
atan2( y, x ) | x != 0 || y != 0 |
log( x ), log10( x ) | x >= 0 |
pow( x, y ) | x != 0 || y > 0 |
sqrt( x ) | x >= 0 |
...
...
Function | Bounds-checking |
---|---|
acos( x ), asin( x ) | -1 <= x && x <= 1 |
atan2( y, x ) | x != 0 || y != 0 |
log( x ), log10( x ) | x >= 0 |
pow( x, y ) | x != 0 || y > 0 |
sqrt( x ) | x >= 0 |
...