Godtone
Joined 17 December 2020
→My Python 3 code: misunderstood behaviour when center = '' (empty string) |
m →My Python 3 code: really dumb error in the code that was causing make_val() to misbehave when using wart_tendency = 0 |
||
| Line 611: | Line 611: | ||
return step_err(x,m) | return step_err(x,m) | ||
def sgn(x): | def sgn(x): | ||
if x | if x > 0: | ||
return 1 | return 1 | ||
elif x < 0: | elif x < 0: | ||