Hello at all.
I need to do a real time plot where on the frame i have this like limit
line:
        import math
        dati = []
        for freq in range(int(freqiniziale), (int(freqfinale    )+ 1)):
            forza = float(massa) * ((2*math.pi*freq)**2)/10
            dati.append(forza)
        ax1 = subplot(111)
        plot(dati)
        xlabel('Frequenza HZ')
        ylabel('Deg')
        title('Grafico Calibrazione')
        ax2 = twinx()
        plot([0.1,0.2,0.3],'r-')
        ylabel('Forza')
        ax2.yaxis.tick_right()
        #dlg = wx.FileDialog(self, "Choose a file", ".", "", "*.*",
wx.SAVE)
        #try:
          #  if dlg.ShowModal() == wx.ID_OK:
            #    filename = dlg.GetPath()

              #  savefig(filename+'.pdf')
        #finally:
          #  dlg.Destroy()
        show()

with this i have the grap on the screen but i have to update every time 
that i receive others data coming from two instruments (10 seconds),
how i can update the grap? 

Regards

Luca


------------------------------------------------------
Scopri MOTOROLA K1, la nuova icona di design Motorola.Clicca e vinci !
http://click.libero.it/motorola16nov



-------------------------------------------------------------------------
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

Reply via email to