Skip to content

Instantly share code, notes, and snippets.

@lockie
Created April 18, 2018 16:12
Show Gist options
  • Save lockie/9eba6a77388aa5b6b5d5cf8cd21b36d3 to your computer and use it in GitHub Desktop.
Save lockie/9eba6a77388aa5b6b5d5cf8cd21b36d3 to your computer and use it in GitHub Desktop.
import matplotlib.pyplot as plt
%matplotlib inline
import numpy as np
%pylab inline
pylab.rcParams['figure.figsize'] = (6, 10)
x = np.linspace() #ваши цифры в скобках
y = # ваш код для функции
plt.plot(x, y);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment