Skip to content

Instantly share code, notes, and snippets.

View jkitchin's full-sized avatar

John Kitchin jkitchin

View GitHub Profile
%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))
%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))
%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))
%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))
%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))