From 0afe26582f3290dd945f3949c5c4176e4a676d8b Mon Sep 17 00:00:00 2001 From: Marius Peter Date: Mon, 26 Aug 2019 16:59:51 -0700 Subject: course end --- hw4/prob_2.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hw4/prob_2.py (limited to 'hw4/prob_2.py') diff --git a/hw4/prob_2.py b/hw4/prob_2.py new file mode 100644 index 0000000..c53cddf --- /dev/null +++ b/hw4/prob_2.py @@ -0,0 +1,8 @@ +import numpy as np +from math import exp, cos, sin +import matplotlib.pyplot as plt + +t = [0.01 * x for x in range(500)] +y = [1.0015 - 1.0404 * exp(-0.432 * t) + 0.039 * exp(-11.5567 * t) for t in t] +plt.plot(t, y) +plt.show() -- cgit v1.2.3