using_uv/Files/symbolic_math.py

9 lines
224 B
Python
Raw Normal View History

2025-10-22 15:09:18 +00:00
from plotnine import ggplot, aes, geom_point, geom_smooth
from polars import read_csv
2025-10-20 14:42:17 +00:00
import mpmath
2025-10-22 15:09:18 +00:00
2025-10-20 14:42:17 +00:00
from sympy import symbols, Function, Lambda, lambdify, exp, diff, limit, oo
a, b, x, z, t = symbols('alpha beta x z t')