Most voted "sympy" questions
2 questions
Sort by count of
-
2
votes1
answer37
viewsIs there a way to assign values to symbolic variables after deriving them using sympy?
Hello, I need to write a code that derives a user-informed function and then assign values to variables to perform the calculation. The problem is that it is necessary for the variables to be…
python numpy calculus ipython-notebook sympyasked 3 years, 9 months ago Leonardo Barbosa Brandão 23 -
1
votes1
answer167
viewsPlot graphing of an algebraic expression in python
I’m trying to plot a chart of an integral I solved, but it’s giving error : from sympy import * from sympy.plotting import * %matplotlib inline r=Symbol('r') e=Symbol('e') r=(1,10,100)…