Tagged Questions
1
vote
2answers
119 views
Figure is chopped off when inserting a MATLAB table as eps figure
I am trying to include a MATLAB UI table (which I have previously saved as an .eps figure and put it into the same folder as my .tex file) into a LaTeX document, using:
\begin{figure}
\centering
...
3
votes
3answers
329 views
Changing fraction style in LaTeX as generated by Matlab
A= [0.7577 0.7060 0.8235 0.4387 0.4898
0.7431 0.0318 0.6948 0.3816 0.4456
0.3922 0.2769 0.3171 0.7655 0.6463
0.6555 0.0462 0.9502 0.7952 ...
3
votes
2answers
490 views
Including a Matlab table in document
Using Matlab I got a table. Now I want to integrate in a LaTeX document. I assume it works like including an image in a document.
A = [1 2 3; 4 5 6; 7 8 9];
latex_table = latex(sym(A))
latex_table =
...