MATLAB: Publish equation in latex

latexpublish

I am working with symbolic expressions and I am calculating a vector which I want to publish formated with matlab.
So my question can be summarized to: How do I print y = (x^2,4*x^2) as
without typing it manually in the system

Best Answer

Use Livescript
y = [x^2; 4*x^2]
Related Question