Tagged Questions

Axes - plural of axis

learn more… | top users | synonyms

7
votes
1answer
3k views

Matlab: How to obtain all the axes handles in a figure handle?

How do I obtain all the axes handles in a figure handle? Given the figure handle hf, I found that get(hf, 'children') may return the handles of all axes. However, the Matlab Help suggests that it may ...
6
votes
1answer
3k views

How do I edit the axes of an image in MATLAB to reverse the direction?

I would like to edit the axes in my series of images being displayed. This is what my image looks like: As you can see, it ranges from 0 to about 500 from top to bottom. Can I invert that? Plus, I ...
5
votes
1answer
1k views

Add legend outside of axes without rescaling in MATLAB

I've got a GUI in MATLAB with a set of axes pre-placed. I'm using the location property of the legend to place it to the right hand side of the axes. However, by doing this the axes get re-scaled so ...
4
votes
1answer
235 views

Matlab area() edge colors cover the axes lines, is there a work around?

figure('Color', 'w') box on x = 1:10; y = 5 * x + 2; area(x, y, 'FaceColor', 'b', 'EdgeColor', 'b') This code creates a figure with the area under the curve shaded blue. The EdgeColor property sets ...
4
votes
3answers
2k views

Matplotlib/pyplot: How to enforce axis range?

I would like to draw a standard 2D line graph with pylot, but force the axes' values to be between 0 and 600 on the x, and 10k and 20k on the y. Let me go with an example... import pylab as p ...
4
votes
6answers
17k views

How to show x and y axes in a MATLAB graph?

I am drawing a graph using the plot() function, but by default it doesn't show the axes. How do we enable showing the axes at x=0 and y=0 on the graph? Actually my graph is something like: And I ...
4
votes
2answers
9k views

Using SQL Server 2005's XQuery select all nodes with a specific attribute value, or with that attribute missing

Update: giving a much more thorough example. The first two solutions offered were right along the lines of what I was trying to say not to do. I can't know location, it needs to be able to look at ...
3
votes
2answers
42 views

How to tell legends from axes in Matlab?

The following stackoverflow qestion: Matlab: How to obtain all the axes handles in a figure handle? identifies how to get handles to all of the axes from a figure in Matlab. However, this list will ...
3
votes
3answers
58 views

What is the most universal axis orientation in a 3D world?

I'm creating a .NET library which generates data for a 3D world, but it doesn't do any of the rendering itself. It falls on XNA, DirectX, OpenGL, etc to render it based on the data (the end coder does ...
3
votes
0answers
216 views

RGoogleMaps axes

I can't find any documentation of the following problem I'm having with the axis labels in RGoogleMaps: library(RgoogleMaps) datas <- structure(list(LAT = c(37.875, 37.925, 37.775, 37.875, ...
3
votes
2answers
2k views

Matlab axes scaling

how exactly do you get fixed scaling of axes in Matlab plot when plotting inside a loop? My aim is to see how data is evolving inside the loop. I tried using axis manual and axis(...) with no luck. ...
2
votes
2answers
48 views

Given a handle of a subplot, how to obtain all its associated colorbar handles?

Take the follow code for example: Hsp=subplot(1,2,1); image(rand(5,5)); Hc=colorbar; subplot(1,2,2); image(rand(5,6)); colorbar; My question is how to obtain Hc, given only Hsp. As is known, ...
2
votes
2answers
41 views

making axes distinct from other grid

Does anyone know how to make x-axis and y-axis look a bit bolder or somehow distinct from other grids? Somehow I want it to look like this
2
votes
1answer
54 views

plotting angularly-wrapped data in cartesian space with matplotlib

Perhaps I've made the title more complicated than the question, but here goes...! I have some angular data, contiguous in the x-y plane, that straddle the 360 => 0 degree line - ie, 358,359,0,1,2.... ...
2
votes
1answer
47 views

How to determine if axes are 2D or 3D in Matlab?

As stated, what is the easiest way to determine programmatically if a Matlab axes object is a 2D or 3D plot?
2
votes
2answers
277 views

Mathematica - Force Logarithmic Scale on Plots & Grouped Axes Labels

I have a ListPointPlot3D plot and all three axes contain a logarithmic distribution of data points. Like this: ..... . . . . . . How do I ...
2
votes
1answer
497 views

pyplot axes labels for subplots

right now, i have the following plot: import matplotlib.pyplot as plt fig2 = plt.figure() ax3 = fig2.add_subplot(2,1,1) ax4 = fig2.add_subplot(2,1,2) ax4.loglog(x1, y1) ax3.loglog(x2, y2) ...
2
votes
2answers
143 views

Axes Properties - Matlab

I need to know how to remove the numbers from X and Y axes. I'm don't think this is related to the X grid or Y grid because in the axes Inspector the XGrid and YGrid is in off state. I tried all ...
2
votes
2answers
134 views

Formatting axes of plots in r

I want to plot a beta distribution in a double logarithmic plot. x <- seq(0, 1, length=1001) y <- dbeta(x, 0.1, 0.1) plot(x, y, type="h", log="xy") The xtics are set at 0.001 0.005 0.01 ...
2
votes
2answers
95 views

XPATH Axes - Issues

XML structure: <units> <unit> <lesson> <name>Sample 1</name> <sections> <section type="IN"> ...
2
votes
1answer
157 views

How to partially apply linkaxes?

Say I have four plots h1-h4 and want to link all their x-axes. For that I can use linkaxes([h1 h2 h3 h4], 'x'). However, in addition I want to link h1 and h3's y-axes (and also h2's to h4's). Now when ...
2
votes
1answer
275 views

Matplotlib: how to draw an axis in the middle of the figure

I would like to draw a static vertical line that is parallel to the y-axis and which is at the middle of the x-axis. This line should not move when one pan in the figure. My goal is to have this ...
2
votes
1answer
646 views

Why does the ButtonDownFcn callback of my axes object stop working after plotting something?

I'm creating a set of axes in a figure and assigning a callback for its 'ButtonDownFcn' property like so: HRaxes = axes('Parent', Figure, 'Position', [.05 .60 .9 .35],... 'XLimMode', ...
2
votes
1answer
2k views

Is there a way to remove a single plot from existing axes?

Is there an easy way to remove a plotted line from a set of axes without clearing everything else on the axes? I'm trying to implement a GUI with a listbox containing several data sets. I can make the ...
2
votes
2answers
386 views

python/matplotlib - parasite twin axis scaling

Trying to plot a spectrum, ie, velocity versus intensity, with lower x axis = velocity, on the upper twin axis = frequency The relationship between them (doppler formula) is f = (1-v/c)*f_0 ...
2
votes
2answers
1k views

How can I change the tick marks scale in MATLAB?

I have a matrix A which I am plotting using imagesc(A). The matrix is a 512 X 512 matrix, but I need the axes to be labeled from 0 to 4000 instead of 0 to 512. I can't seem to find where I can change ...
2
votes
1answer
719 views

XPath element which contains an attribute and whose parent's parent contains another attribute

This is my first post here and since I've seen many great answers I thought I'd give it a try. I'm trying to use XPath to obtain a specific element in an HTML document. Here is an example based off ...
1
vote
3answers
134 views

Mathematica Manipulate Plot: Scaling Axes

Say I have set up the following function f[a,b,c] which I wish to plot while varying a and b f[a_,b_,c_]:=a b c Exp[a b] Manipulate[ Plot [ f[a,b,c], {c,0,1}, PlotRange->{{0,0.05},Automatic} ], ...
1
vote
1answer
66 views

use axes coordinate to generate an image without plotting it, in Matlab

I have an image full of objects of the shape of an ellipse. I need to design an ellipse for each object that is the best fit for the object itself. I have found a code that helps me to plot the ...
1
vote
2answers
72 views

How can I get figure to refresh after changing an object's axes in Matplotlib?

Please refer to the example below. Two subplots are added, and to each a Line2D plot is inserted. I then change the Line2D's axes in the second subplot to be the first subplot. Judging by the ...
1
vote
1answer
103 views

How can I programmatically select a specific subplot in Matplotlib?

So in a figure where three vertical subplots have been added with add_subplot, how can I select let's say the middle one? Right now I do this list comprehension: [r[0] for r in sorted([[ax, ...
1
vote
2answers
85 views

preceding-sibling of current text node

I have this kind of XML : <nav:objectList> <nav:item > <nav:attribute name="display">1</nav:attribute> <nav:attribute ...
1
vote
1answer
141 views

Labelling logarithmic scale display in R

While plotting histogarm, scatterplots and other plots with axes scaled to logarithmic scale in R, how is it possible to use labels such as 10^-1 10^0 10^1 10^2 10^3 and so on instead of the axes ...
1
vote
1answer
153 views

Android AR Compass Display

I am working on an Augmented Reality (AR) app for an Android phone. I would like to display my orientation data in the form of two rotating axes: one at the top of the screen to show the current ...
1
vote
1answer
97 views

Coordinate Axes in Visio

I Visio start of coordinates is the left-lower corner. Is there any way to change it, for example set the left-upper corner as a start of coordinate axes?
1
vote
1answer
193 views

Python graph- change axis marker colours and legend border colours

I'm using Python to plot a couple of graphs and I'm trying to change the formatting and essentially 'brand' the graph. I've managed to change most things using pylab.rcParams[...], but I can't work ...
1
vote
0answers
58 views

Any way in flot to share 0 line between two y axes?

I need two y axes for my flot chart. I'd like for them to share the 0 line. Each has a different scale. Also, the zero line won't always be the min for both axes (sometimes one of the axes needs to ...
1
vote
0answers
373 views

Matlab - axes, image, gui [closed]

Possible Duplicate: How can I plot an image (.jpg) in MATLAB in both 2-D and 3-D? Hello everyone, how can I put an image to axes - to be in the centre of the axes, centre-align. Thanks for ...
1
vote
1answer
481 views

Manually specifying tick marks on a logarithmic axis in JFreeChart

Using JFreeChart I have a plot with a LogAxis with tick marks on the domain axis of an XYPlot that are determined automatically based on the width of the graph. My domain values are 0.01, 0.05, 0.1, ...
1
vote
1answer
419 views

How to select an axes child in MATLAB?

I have been looking everywhere but I can't find a site that shows how to do this. The thing I want is to be able to select an object from an axes when I click it, so that I can change its colours and ...
1
vote
1answer
428 views

matplotlib 3D plot with PyQt4 in Qtabwidget (mplwidget)

I am working on my first Python app using PythonXY (2.6 and Qt4). I have a window with some buttons and a QtabWidget. When I press a button I want to plot a 3D image on a specific tab. I managed to ...
1
vote
1answer
307 views

Put text into non-active Axes in MATLAB

Most MATLAB plotting commands allow you to specify which axes to act on, for instance plot (x,y) plots in the current axes, but plot(Ax, x, y) will plot in the axes Ax. Similarly, you can ...
1
vote
1answer
594 views

How can I link axes of imshow plots for zooming and panning?

Suppose I have a figure canvas with 3 plots... 2 are images of the same dimensions plotted with imshow, and the other is some other kind of subplot. I'd like to be able to link the x and y axes of the ...
1
vote
2answers
1k views

Matplotlib coord. sys origin to top left

How can I flip the origin of a matplotlib plot to be in the upper-left corner - as opposed to the default lower-left? I'm using matplotlib.pylab.plot to produce the plot (though if there is another ...
1
vote
1answer
565 views

both a top and a bottom axis in pylab (e.g. w/ different units) (or left and right)

I'm trying to make a plot with pylab/matplotlib, and I have two different sets of units for the x axis. So what I would like the plot to have is two axis with different ticks, one on the top and one ...
0
votes
4answers
95 views

XQuery ancestor axis doesn't work, but explicit XPath does

Consider the following XML snippet: <doc> <chapter id="1"> <item> <para>some text here</para> </item> </chapter> ...
0
votes
2answers
48 views

matplotlib secondary axes that spans half of the first one

I need a plot with two y axis but the second one should be half of the first one. I was thinking on two different plot overlapped but I guess there is a simpler way. Thank you very much.
0
votes
1answer
171 views

How to set same scale for domain and range axes JFreeChart

I would like to create pole/zero plot similar to pole/zero plot. It is for displaying IIR and FIR filters properties like stability, type... My question is: How can I set same scale (not range) for ...
0
votes
1answer
94 views

Using the magnetic field in Android

So I'm writing an application to see if the device has rotated 360 degrees. The way I do this is using the Accelerometer sensor combined with the Magnetic field sensor. From this method I get three ...
0
votes
1answer
96 views

save image from axes in matlab

i'm new to matlab and i have a problem. i generate a picture in an axes that is called newIM when i click on the apply button. now i want to safe this new picture in a jpg or gif or bmp or whatever ...

1 2