-
-
Save lockie/9eba6a77388aa5b6b5d5cf8cd21b36d3 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
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