Jam/tools.py

7 lines
73 B
Python
Raw Normal View History

2021-09-28 19:23:06 +00:00
# sign function
def sgn(x):
if x>=0:
return 1
return -1