Tagged Questions
3
votes
3answers
94 views
Insert text inside a image in eps format
UPDATE:I tried the solution with overpic and it works fine. But the problem is, sometimes, my experimental setup changes and I have to reproduce the eps file using different parameters from Matlab. ...
2
votes
1answer
122 views
Intersecting planes not shown correctly with TikZ
I made a plot in MATLAB of a deformed and an undeformed model. I converted the figure to TikZ using matlab2tikz and added it to my .tex file. I then noticed that the two configurations, which are ...
2
votes
1answer
189 views
Trouble including a Matlab surf plot (pdf or png) with pgfplots
I have successfully used \addplot graphics before. Now I have a surf plot in Matlab, which I exported as png and pdf and I would like to include the image with \addplot3 graphics.
I found some ...
0
votes
0answers
118 views
Not enough room in an internal buffer latex Tikz [closed]
I'm trying to plot a graph using TikZ (matlab2tikz output) but when I put it inside a subfloat latex doesn't produce any output file and complaines about being out of internal buffer. Any ideas how I ...
8
votes
0answers
301 views
Help on adjusting histogram plot created by TikZ [duplicate]
I am trying to create a tikzpicture similar to what I have made in MATLAB. MATLAB gives me the following result after running histogram:
myhistnorm = [ 0.1231 0 0 0 0 0 0 0.0001 0.0001 ...
2
votes
1answer
452 views
matlab2tikz for surf plots: reducing data?
I was really happy to see that matlab2tikz also supports surf plots. Unfortunately, it produces too much data, so I run into the well-known memory problem. I tried compiling with lualatex instead of ...
1
vote
0answers
112 views
How can I customize a plot produced by matlab and exported by matlab2tikz script as I would do with subfigures and the \includegraphics command?
I.e: I had my plots arranged with a 3-in-a-row style with this code:
\begin{figure*}
\centering
\subfigure[Figure A]{\includegraphics[width=55mm]{a.jpg}}
\subfigure[Figure ...
4
votes
1answer
166 views
matlab2tikz and bar3 function
If I use the function hist3() it perfectly works with matlab2tikz. But if I use
the function bar3 I find this in my matrix.tikz:
% This file was created by matlab2tikz v0.2.3.
% Copyright (c) ...
5
votes
0answers
161 views
Plots from externalized TikZ are rotated [closed]
I just found out about tikzexternalize and I love it - well, almost. This is my situation: I have done simulations in Matlab and used
matlab2tikz
to get the plots from Matlab into my .tex document. ...
3
votes
2answers
717 views
Removing scientific notation in tikzpicture made by matlab2tikz
I am having a very hard time trying to figure out how to remove the scientific notations on the y-axis of my graphs. The graphs are made in MATLAB and then converted into TikZ files using the package ...
2
votes
3answers
459 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
...
2
votes
1answer
541 views
Editing matlab tikz figure
Matlab gave me this code for graph. I want to remove values from axes and add only my own values, which are \pi and \sqrt{2}. How to edit this code?
\begin{tikzpicture}
\begin{axis}[%
scale only ...
7
votes
1answer
412 views
pgfplots: color a surf using arbitrary colors
I am trying to figure out if there is an equivalent in pgfplots to what in MATLAB is done through the following command: surf(A,B). This would plot the geometry A, using the colors specified in B.
I ...
1
vote
0answers
782 views
Can't plot a surf from MATLAB using pgfplots [closed]
for whatever reason I cannot come up with I am not able to plot a surf figure I have generated in MATLAB and then converted to tikz using the script available here. I am getting the following errors:
...
33
votes
3answers
2k views
3-dimensional histogram in pgfplots
I have a simple 3d histogram
which I want to import into pgfplots, e.g. using matlab2tikz or by hand.
PGFplots does not offer 3d histograms.
Is there an easy way to do this?
6
votes
1answer
341 views
How can I scale a TiKZ image created in MATLAB in my Tex File?
I'm currently having trouble scaling TiKZ figures in LaTeX and wondering if anyone can help figure out what was going on, or suggest a smarter way to do things.
I'm currently creating plots in MATLAB ...
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');
...
12
votes
3answers
3k views
How to export matlab figures to (pdf) LaTeX?
I am writing a student thesis in LaTeX and need to import several figures created in Matlab. I found some programs to do this task:
matfig2pgf
matlab2tikz
fig2texPS
The problem is that using one ...
