Skip to content

Instantly share code, notes, and snippets.

@justindmartin
Last active February 8, 2019 18:07
Show Gist options
  • Save justindmartin/5856162 to your computer and use it in GitHub Desktop.
Save justindmartin/5856162 to your computer and use it in GitHub Desktop.
This is a sigmoid function in PHP.
<?php
function sigmoid($t){
return 1 / (1 + pow(M_EULER, -$t));
}
?>
@ai-a
Copy link

ai-a commented Feb 8, 2019

Thanks a million! was looking for this function! so simple!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment