Open
Description
When I print a table in a MATLAB notebook I would like to render it in LaTeX, but it is not currently possible.
The following is an example of a code that doesn't get LaTeX output.
syms x y;
eq = cos(x)*cos(y) == 0;
struct2table(solve(eq, [x y]))
ans = 2x2 table
x y
____ ____
pi/2 0
0 pi/2
With complex expression it is evident that a LaTeX table would be easier to read.