Skip to content

Instantly share code, notes, and snippets.

@carbide-public
Created August 26, 2016 13:31
Show Gist options
  • Save carbide-public/eb56d8c8aa032c370323557c2f0bff0b to your computer and use it in GitHub Desktop.
Save carbide-public/eb56d8c8aa032c370323557c2f0bff0b to your computer and use it in GitHub Desktop.
untitled
var sigm = function(z) {
return 1 / (1 + Math.pow(2.71828,-z)) ;
}
var data = [];
for (var i = -100; i < 100; i++) {
data.push(sigm(i / 100));
}
data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment