Skip to content

Instantly share code, notes, and snippets.

@jeffreyiacono
Created November 25, 2013 06:22
Show Gist options
  • 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