I already drew the graph of the equation x ** 2 with Jupyter with the code:
from sympy.plotting import plot
from sympy.abc import x
eq=x**2
plot(eq,(x,-2,2),ylim=(-1,2),line_color="g")
that gives us the image:
but it is also necess...
asked on
16.10.2016 / 08:07