Created
March 25, 2018 22:40
-
-
Save jkitchin/3f4566fb0a07dc5fad1cd6bfcd3d98d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%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