[Matplotlib-users] How to show up some graphs one by one automatically

2006-09-26 Thread zhangh1
Hi,
I want to write a program that will show up some graphs one by one
automatically, but it turns out that I have to close the very first one
manually (which is not what I want), then the following will show up
automatically one by one. Any suggestions will be greatly appreciated.
Best Regards, John

from pylab import *

a=[1,2,3,4,5]
b=[1,2,3,4,5]
c=[2,4,9,16,25]


clf()
plot(a,b)
show()
close()

plot(a,c,'r')
show()
close()

plot(a,c,'r')
show()
close()



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] How to distroy a widget

2006-09-26 Thread zhangh1
Thanks in advance for the command name


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] How to plot two graphs in two different windows at the same time?

2006-09-28 Thread zhangh1
Hi,
Is there any way to plot two graphs in two different windows at the same
time? The reason for doing this is that I wanted to update a graph
automatically in a for loop, but it turned out that the first figure has
to closed manually. Any suggestion for that is also greatly appreciated.
Best Regards, John


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] problems with 3d plotting

2006-09-29 Thread zhangh1
How to get the following through? Thanks


import matplotlib.axes3d as p3

Traceback (most recent call last):
  File "", line 1, in -toplevel-
import matplotlib.axes3d as p3
  File "C:\Python24\lib\site-packages\matplotlib\axes3d.py", line 26, in
-toplevel-
import art3d
  File "C:\Python24\lib\site-packages\matplotlib\art3d.py", line 17, in
-toplevel-
import proj3d
  File "C:\Python24\lib\site-packages\matplotlib\proj3d.py", line 21, in
-toplevel-
cross = nx.cross
AttributeError: 'module' object has no attribute 'cross'


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] How to transpose a matrix

2006-10-05 Thread zhangh1
Is there any easy fucntion to do that? Thanks


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] How to add a scroll bar to a table

2006-10-05 Thread zhangh1
Hi, all:
I added a table to my figure using 'table' function. But since this table
is very long, the user can only see part of it. Is there any easy way to
add a scroll bar to the chart so that the user can scroll it down and see
it?
Thanks


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] How to write a 2D list into a file?

2006-10-09 Thread zhangh1
I mean in the original data format, without any characters like "[],"
Thanks



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] multidimensional downhill minimization

2006-10-12 Thread zhangh1
Hi, everyone:
is there any function in any libraray to do a multidimensional downhill
minimization for a given function?
Thanks


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] How to label the each line by the corresponding values in the contour plot?

2006-10-18 Thread zhangh1
HI, all:
How to label the each line by the corresponding values in the contour plot?
Thanks!


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] Can python excute multi-files task

2006-11-04 Thread zhangh1
Hi, all:
Can python excute multi-files task, just like C++ with #include "**.h"?


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] Can python excute multi-files task

2006-11-04 Thread zhangh1
Hi, all:
Can python excute multi-files task, just like C++ with #include "**.h"?


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


Re: [Matplotlib-users] Can python excute multi-files task

2006-11-04 Thread zhangh1
> Hi, all:
> Can python excute multi-files task, just like C++ with #include "**.h"?
>



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users


[Matplotlib-users] How do I include the stop value in the array by using arrayrange?

2006-11-17 Thread zhangh1
Hi,all:
How do I include the stop value in the array by using arrayrange?
Say:
arrayrange(0,10,1.0,Float)
[ 0., 1., 2., 3., 4., 5., 6., 7., 8., 9.,]
but I want 10 to be included

Thanks


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users