On Jan 21, 2007, at 11:04 AM, Allan Noriel Estrella wrote:
>
> does matplotlib already support wxPython 2.8?
I have not had the opportunity to test it with 2.8. However, I am
given to understand that it works. The one caveat is that you cannot
presently compile the WXAgg accelerator with 2.8
does matplotlib already support wxPython 2.8?
-
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 su
> "Francesco" == Francesco Davide Calabrese <[EMAIL PROTECTED]> writes:
Francesco> Hi, the following simple code (in Matlab syntax):
Francesco> x1 = [5, 6] y1 = [3, 2] bar([1,2], [x1; y1])
Francesco> produces a bar plot where two of the bars have a color
Francesco> (let's say
On Jan 21, 2007, at 8:21 AM, Allan Noriel Estrella wrote:
>
> i found this code snippet in one example in matplotlib
>
>
> i just want to ask what does app = App(0) mean, why do we need 0
> for an argument
It explicitly disables the redirection of sys.stdout and sys.stderr.
http://www.
i found this code snippet in one example in matplotlib
class App(wx.App):
def OnInit(self):
'Create the main window and insert the custom frame'
frame = CanvasFrame()
frame.Show(True)
return True
app = App(0)
app.MainLoop()
i just want to ask what does app = App