def plot_vect2(y, a, b, step):
x = np.arange(a, b, step)
plt.plot(x, y)
plt.show()
def plot_func2(f, a, b, step):
x = np.arange(a, b, step)
y = np.array([f(i) for i in x])
plot_vect2(y, a, b, step)
return y
y2 = plot_func2(f, -10, 10, 0.1)
def plot_vect2(y, a, b, step):
x = np.arange(a, b, step)
plt.plot(x, y)
plt.show()
def plot_func2(f, a, b, step):
x = np.arange(a, b, step)
y = np.array([f(i) for i in x])
plot_vect2(y, a, b, step)
return y
y2 = plot_func2(f, -10, 10, 0.1)