Skip to content

Instantly share code, notes, and snippets.

@ghorn
Created March 22, 2014 20:40
Show Gist options
  • Save ghorn/9714029 to your computer and use it in GitHub Desktop.
Save ghorn/9714029 to your computer and use it in GitHub Desktop.
# result of symbolic differentaition
def f_sym(x):
f = exp(k*x)
fd = k*exp(k*x)
return (f,fd)
# result of AD
def f_ad(x):
f = exp(k*x)
fd = k*f
return (f,fd)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment