Skip to content

Instantly share code, notes, and snippets.

@jeffreyiacono
Created November 25, 2013 06:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffreyiacono/7637121 to your computer and use it in GitHub Desktop.
Save jeffreyiacono/7637121 to your computer and use it in GitHub Desktop.
sigmoid in octave
x = -10:0.1:10;
plot(x, 1 ./ (1 + e .^ -x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment