Skip to content

Instantly share code, notes, and snippets.

@jkitchin
Created March 25, 2018 22:42
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 jkitchin/466de9684ab13d84a574ccfab2607ef0 to your computer and use it in GitHub Desktop.
Save jkitchin/466de9684ab13d84a574ccfab2607ef0 to your computer and use it in GitHub Desktop.
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 60, 500)
plt.figure(figsize=(4, 2))
plt.plot(np.exp(-0.1 * x) * np.cos(x),
np.exp(-0.1 * x) * np.sin(x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment