Open k4sh4n1 opened 1 month ago
You should familiarize yourself with how sympy works. You must first assign sympy objects to the variables, e.g.
import sympy as sp
theta_A = sp.symbols("theta_A")
L = sp.symbols("L")
Delta_B = sp.symbols("Delta_B")
As described in the README of handcalcs, Sympy does not need handcalcs to render the equations. Only if the equations are to be calculated in handcalcs style at the end, handcalc makes sense. See example in the README.
I have these cells on a notebook:
But I'm receiving this error:
Question
Symbolic equations
I have studied this post: https://github.com/connorferster/handcalcs/issues/22#issuecomment-703406581 But it's too complex.
I just simply want to display symbolic equations. How can I do that? I'm confused 😕