Jam/tools.py
2021-09-28 15:23:06 -04:00

7 lines
73 B
Python

# sign function
def sgn(x):
if x>=0:
return 1
return -1