00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 #ifndef __PLOT_H_
00038 #define __PLOT_H_
00039
00084 void plot_point(double x, double y, int color = 1, int nfig = 0,
00085 double ymin = -1., double ymax = 1., const char* title = 0x0,
00086 const char* label_y = 0x0, const char* device = 0x0) ;
00087
00109 void plot_point_set(int np, const double* xx, const double* yy, int color = 1,
00110 int nfig = 0, double ymin = -1., double ymax = 1.,
00111 const char* title = 0x0, const char* label_y = 0x0,
00112 const char* device = 0x0) ;
00113
00142 void plot_profile(const double* yy, int nx, int color = 1, int style = 1,
00143 int nfig = 0, double ymin = -1., double ymax = 1.,
00144 const char* title = 0x0, const char* label_y = 0x0,
00145 const char* device = 0x0) ;
00146
00152 void plot_close(int nfig = 0) ;
00153
00157 void plot_close_all() ;
00158
00159
00166 void plot_init() ;
00167
00172 void plot_open(int nfig, double ymin, double ymax, const char* title,
00173 const char* label_y, const char* device) ;
00174
00175 #endif