You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exp: Double -> Double
exp x = prim__floatExp x
log: Double -> Double
log x = prim__floatLog x
sin: Double -> Double
sin x = prim__floatSin x
cos: Double -> Double
cos x = prim__floatCos x
tan: Double -> Double
tan x = prim__floatTan x
asin: Double -> Double
asin x = prim__floatASin x
acos: Double -> Double
acos x = prim__floatACos x
atan: Double -> Double
atan x = prim__floatATan x
atan2: Double -> Double -> Double
atan2 y x =atan (y/x)
sinh: Double -> Double
sinh x = (exp x -exp (-x)) /2cosh: Double -> Double
cosh x = (exp x +exp (-x)) /2tanh: Double -> Double
tanh x =sinh x /cosh x
sqrt: Double -> Double
sqrt x = prim__floatSqrt x
floor: Double -> Double
floor x = prim__floatFloor x
ceiling: Double -> Double
ceiling x = prim__floatCeil x
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: