[Matplotlib-users] 'the path of the tip of rotated vectors' or 'paths on a sphere'

2010-04-12 Thread qubax
I need to plot the path the tip of a specific vector draws, when the vector is rotated around certain axis for some angels as a basic example: start vector is (0,0,1) rotation around axis (0,1,0) for an angle of (pi/2) rotation around axis (0,0,1) for an angle of (pi) so the path should show some

Re: [Matplotlib-users] Docked/tabbed figures in one window?

2009-12-05 Thread qubax
Thanks. One final question - how would i run the MainLoop() in a separate thread? because once i start MainLoop(), i can't do something in ipython anymore. I'd like to have a window open and then be able to add tabs in that window, and everything from from within ipython. so that i can close fram

[Matplotlib-users] Docked/tabbed figures in one window?

2009-11-12 Thread qubax
Good evening. I would like to be able to dock some figures into one window and be able to look at them by tabs or something similar. Is something like that already implemented or does someone know of a widget that can do that? If not ... do you have suggestions of how i could do that? Thanks fo

[Matplotlib-users] mplot3d: bar3d + colormap somehow?

2009-11-04 Thread qubax
Greetings. I would like to make a mplot3d.bar3d plot where the colour indicates the value of the element. Like: negative values blue, positive red, zero green. From what i see i can only give all bars the same color ... Is there a way around it? I know that this is currently done in mayavi, but

Re: [Matplotlib-users] plotting from within ipython, and then go on in the shell calculations

2009-10-13 Thread qubax
okay. don't shoot me you need to start ipython with: ipython -pylab as noted in: http://matplotlib.sourceforge.net/users/shell.html made someone else can benefit from my mistake sorry for bothering you q On Wed, Oct 14, 2009 at 02:09:21AM +0200, qu...@gmx.at wrote: > but i want to: > 1)

Re: [Matplotlib-users] plotting from within ipython, and then go on in the shell calculations

2009-10-13 Thread qubax
but i want to: 1) plot something 2) go on in ipython (with the figure/plot staying on) is that really not possible? thanks, q On Tue, Oct 13, 2009 at 03:54:22PM -0600, Jeff Whitaker wrote: > qu...@gmx.at wrote: > > Greetings. > > > > What i want to do is something like: > > > > ipython ... > >

[Matplotlib-users] plotting from within ipython, and then go on in the shell calculations

2009-10-13 Thread qubax
Greetings. What i want to do is something like: ipython ... t=linspace(0,2,50) y=sin(2*pi*t) pyplot.plot(t,y) pyplot.show() I get the plot here ... but now i want to do some more stuff in the ipython shell (and possibly have the plot still open) How do i free the shell from the pl

Re: [Matplotlib-users] Subplots, multiple bar3d plots + titling

2009-09-29 Thread qubax
Thanks, that works like a charm. final bonus question: How can i individually set the point of view/zoom level for the different 3d subplots? Currently, when i rotate/zoom (with the mouse) in one subplot, the changes are applied on all 3d subplots. Thanks again, q On Mon, Sep 28, 2009 at 11:52

[Matplotlib-users] Subplots, multiple bar3d plots + titling

2009-09-28 Thread qubax
Greetings, I would like to plot to make a figure with 3 subplots of the form (221) to (223): - each subplot should show a bar3d plot of a matrix - each subplot should have it's own title The problems: a) I don't see (nor did i find something) how i can use subplots combined with bar3d (f