Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
rtk-rnjn committed Jul 21, 2023
1 parent cfe0ff3 commit 0017366
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion utilities/imaging/graphing.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ def plotfn(_: Context, equation: str, *, xrange: tuple[int, int] = (-20, 20)) ->
x = symbols('x')
equation = _clean_implicit_mul(equation)
expr = sympify(equation) # Convert equation string to a Sympy expression
print(expr)
func = lambdify(x, expr) # Create a function from the Sympy expression

x_vals = np.linspace(*xrange, 500)
Expand Down

0 comments on commit 0017366

Please sign in to comment.