Tagged Questions
2
votes
1answer
123 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 ...
0
votes
1answer
66 views
Plotting from MATLAB with matfig2pgf: some plots do not show up in the pdf
I am ploting from Matlab with matfig2pgf. I plot two lines put only part of them show up in the .pdf, once it's compiled:
dat1= [-500:1000, rand(1501,1}]
dat2= [-500:1000, cos(rand(1501,1})]
...
2
votes
1answer
194 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
120 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
459 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 ...
2
votes
1answer
307 views
Minor ticks not showing when using matlab2tikz
I am using matlab2tikz to import MATLAB figures into TeX.
However I can't seem to get the x or y minor ticks to show in the document compiled by TeX. The MATLAB figure I have converted to .tikz have ...
1
vote
1answer
93 views
pgfplots externalize and references: some work, some don't
I have started using the tikz externalization library for my current project. From here I learned to use
\pgfplotsset{invoke before crossref tikzpicture={\tikzexternaldisable},invoke after crossref ...
3
votes
2answers
727 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 ...
8
votes
2answers
1k views
matlab2tikz - TeX out of memory
I am using matlab2tikz to import figures from MATLAB to tex.
However I quickly get the message TeX capacity exceeded, sorry [main memory size = 3000000].
I have tried expand main memory using ...
7
votes
1answer
416 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
788 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?
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');
...
