Say I have the following symbolic function:
syms f(t)
f(t)=sin(t)/t
I want to get the limit using another symbolic function. I tried:
syms lim(x)
lim(x)=limit(f(t),t,x)
But when I tried to use lim(0)
I got this error:
Error using symengine (line 59) Division by zero.
Can this be fixed?