Skip to content

Instantly share code, notes, and snippets.

@creaktive
Created May 19, 2011 21:30
Show Gist options
  • Save creaktive/981796 to your computer and use it in GitHub Desktop.
Save creaktive/981796 to your computer and use it in GitHub Desktop.
sgn()
# http://en.wikipedia.org/wiki/Sign_function
sub sgn {
return sprintf('%.0f', $_[0] / sqrt($_[0] ** 2 + 0.00001));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment