Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
5k views

Python with matplotlib - drawing multiple figures in parallel

I'm have functions that contribute small parts of a figure generation. What I'm trying to do is to use these functions to generate multiple figures? So something like this: work with Figure 1 do ...
7
votes
1answer
78 views

Script to save matlab figures to a specified directory

Suppose I have several figures open in matlab. I would like some function I can call, e.g save_all_figures_to_directory('dir_name'), that would iterate over all figures and save them to the specified ...
6
votes
1answer
501 views

Can I change the export to pdf settings in Mathematica 8?

I am using Mathematica to plot a number of figures I require and then using them as pdfs in Latex. The issue is that Mathematica exports the figures using Acrobat 5.x settings compatibility and I ...
6
votes
3answers
2k views

How do I get the handles of all open figures in MATLAB

I have nine open figures in matlab (generated by another function) and I want to print them all to file. Does anyone know how to grab the handles of all open figures in MATLAB? I know about gcf but ...
6
votes
2answers
851 views

Python with matplotlib - reusing drawing functions

I have a follow up question to this question. Is it possible to streamline the figure generation by having multiple python scripts that work on different parts of the figure? For example, if I have ...
5
votes
1answer
1k views

In LaTeX, is there a way to put a float automatically after where it is first referenced?

I am currently writing a long one-column document that contains a lot of floats (figures and tables). I know the usual b/h/p/t options for placing floats in latex. However, I was wondering if there ...
4
votes
3answers
313 views

MATLAB - best way to dynamically update a line handles' XData and YData?

I am collecting data and plotting that data in real time. The data are produced by a motion capture system. I have one class DynamicDataset that is just a wrapper around a 2-column matrix (although ...
4
votes
7answers
20k views

Is there a way to get LaTeX to place figures in the same page as a reference to that figure?

I am using LaTeX and the figure environment. I am well familiar with the parameters to that environment: [htbp], and I am also generally familiar with the strategies that LaTeX takes, by default, to ...
3
votes
2answers
1k views

centering only header of LaTeX table

I'd like to center just the header, but not the body of particular columns in a table. For example: \begin{table}[!t] \centering \caption{ \bf{My table}} \begin{tabular}{l|c|} ... \end{tabular} ...
2
votes
3answers
237 views

MATLAB - dynamically resize x-axis but not y-axis in plots?

I am generating a plot in real-time. I shift the x-axis by 30 seconds, every 30 seconds. This is all well and good, but my y-axis is auto-resizing itself to smaller than previously. Take a look below: ...
2
votes
1answer
2k views

Rendering and image quality in MATLAB figures

I have a contour plot and I am using the current rendering: set(gcf, 'renderer', 'zbuffer'); but it is giving me this thick red line in the plot and I don't know how to get rid of it. I tried ...
1
vote
1answer
70 views

Dividing a figure and handling Xticks (Matlab)

I have some problems with figures in Matlab. I divided my bar plot into two figures since I have totally 171 bars. I took the first half of the data at first (figure 1) and then the second half ...
1
vote
1answer
94 views

Prevent figures/listings from being inserted into specific parts of a LaTeX document

I have a part A in a document with some text and listings/figures in between. The figures and listings are positioned using htb. Following this part A, there is the bibliography. However a couple of ...
1
vote
1answer
446 views

EPS figure in pdf output is transparent and placed over text - a Latex problem

I have generated eps figures in MATLAB and am using them in Latex. (Miktex 2.9 with TexnicCenter). I dont understand why the output ( PS-> pdf ) shows the figure on top of the text below it. Also the ...
1
vote
2answers
1k views

Assigning figure size to a figure with a given handle (MATLAB)

is there a way to assign the outerposition property of a figure to a figure with a given handle? For example, if I wanted to define a figure as say figure 1, I would use: figure(1) ...
0
votes
2answers
51 views

How to change the page/plot two figures

I am developing a tool that should produce 3 plots. Two of those are related and therefor I have created them using the the pyplot.subplot. The third one needs more space, and I would like to create ...
0
votes
1answer
17 views

Inspector seems to prevent user-defined classes from being cleared when connected to a figure

I am writing a basic GUI using classes in MATLAB. It involves basic uicontrols() and GridLayout components. Normally, if I close the figure and issue a 'clear classes' everything is fine. However, if ...
0
votes
0answers
215 views

How do I put multiple figures on the same line in Latex? [closed]

How do I put multiple figures on the same line in Latex? No subfigures. I want multiple distinct figures on each line, each with their own caption and label, but on the same line. Thanks!
0
votes
1answer
369 views

MATLAB. Two figures in two different files - how to run first fig from the second one?

I have two figs in two different files. By clicking a button on first fig I want to show the second one... how to do this? is it possible? If YES than how to exchange with data between two figures? ...
0
votes
2answers
656 views

Pythagoras tree with g2d

I'm trying to build my first fractal (Pythagoras Tree): in Java using Graphics2D. Here's what I have now : import java.awt.*; import java.awt.geom.*; import javax.swing.*; import ...