comparison Plot.h @ 0:d9aae7d7f2c6

Import
author Daniele Nicolodi <daniele.nicolodi@obspm.fr>
date Tue, 03 Jul 2012 10:38:59 +0200
parents
children bd28161e5ac2
comparison
equal deleted inserted replaced
-1:000000000000 0:d9aae7d7f2c6
1 #include "YLCStuff.h"
2
3 #define MAXPOINTSNUMBER 10000
4
5 typedef struct {
6 PanelHandle PlotPanel ; // le handle sur le graphe
7 void (*OnClosePanel)(int); // pointer on a function to execute when the panel is closed (argument is the panel Handle)
8 int IndexPoint ; // le nombre de points à plotter
9 double * Frequencies ; // les valeurs à plotter (alloué dynamiquement par le constructeur...)
10 double Mean, Slope, ADev ; // les valeurs de moyenne, pente et deviation d'Allan calculés au fur et à mesure
11 } Plot_Data ;
12
13
14 int Plot_InitPanel(Plot_Data * Instance, char * title, double PlotMin, double PlotMax, void (*OnCloseFunc)()) ;
15 int Plot_ClosePanel(Plot_Data * Instance) ;
16
17 int Plot_AddFrequency(Plot_Data * Instance, double Freq) ;
18
19