Tagged Questions
0
votes
0answers
44 views
A question on consistency of fonts in figures and in text
Suppose I output a figure of some function from Matlab, without adding the x-axis label and y-axis label. The figure is then saved as a PDF file.
Now I want to input this figure into LaTeX, and I ...
2
votes
3answers
483 views
Problems with including a tikz tex file generated by Octave (MatLab clone)
I have plotted a figure in Octave and printed it as a TikZ figure (see the device option) to a tex file called comparison_tikz.tex, and I have imported it into my document with the line
...
4
votes
1answer
1k views
Problem using matlab2tikz
I'm trying to get matlab2tikz to work. I want to use it for prettyfying output of Matlab's image() command.
In Matlab I tried
imagesc(rand(100));
xlabel('X');
ylabel('Y');
title('Random Colors');
...