Spaces:
Sleeping
Sleeping
File size: 380 Bytes
5fcecfa dcb0894 a95ae71 |
1 2 3 4 5 6 7 |
# Define allowed operators. Any julia operator can also be used.
plus(x::Float32, y::Float32)::Float32 = x+y #Do not change the name of this operator.
mult(x::Float32, y::Float32)::Float32 = x*y #Do not change the name of this operator.
pow(x::Float32, y::Float32)::Float32 = sign(x)*abs(x)^y
div(x::Float32, y::Float32)::Float32 = x/y
loga(x::Float32)::Float32 = log(abs(x) + 1)
|