How can we convert Latex representation into symbolic math.
For example,
A LaTex representation
y = \int x^2
Has an equivalent symbolic math representation as
syms x
y = int(x*x, x)
Is there a function to perform this action? I know that there exists a function latex in matlab and I want the exact inverse of this function.