CODeME
R_pipeScript.h
Go to the documentation of this file.
1 
12 #ifndef R_PIPESCRIPT_H_INCLUDED
13 #define R_PIPESCRIPT_H_INCLUDED
14 
15 FILE* R_openPipe ();
16 void R_closePipe (FILE* pipe);
17 void R_Set_Library (char* Lib, FILE* pipe);
18 void R_Set_Librarys (int nLib, char** Lib, FILE* pipe);
19 void R_Set_Canvas (double* Lim, char* xLabel, char* yLabel, char* main ,FILE* pipe);
20 void R_Set_3dCanvas (double* Lim, char* xLabel, char* yLabel, char* zLabel, char* main , FILE* pipe);
21 void R_plot_XY (double x, double y, char* pch, char* color, FILE* pipe);
22 void R_plot_XYZ (double x, double y, double z, char* pch, char* color, FILE* pipe);
23 void R_plot_Point (double* point, char* pch, char* color, FILE* pipe);
24 void R_plot_3dPoint (double* point, char* pch, char* color, FILE* pipe);
25 void R_plot_Set_Points (int nPoints, double** Set, char* pch, char* color, FILE* pipe);
26 void R_plot_Set_Lines (int nPoints, double** Set, char* Line_width , char* color, FILE* pipe);
27 void R_plot3d_Set_Points (int nPoints, double** Set, char* alpha, char* pch, char* color, FILE* pipe);
28 void R_plot3d_Set_Lines (int nPoints, double** Set, char* alpha, char* Line_width, char* color, FILE* pipe);
29 void R_sleepSystem (FILE* pipe, double time);
30 void R_Set_viewSize3d (int xPixel , int yPixel, FILE* pipe);
31 void R_Set_Figure (char* Filename , double* size, FILE* pipe);
32 void R_Print_Figure (FILE* pipe);
33 void R_Print_Figure3d (char* Filename , FILE* pipe);
34 void R_Print_Snapshot3d (char* Filename , char* fmt , FILE* pipe);
35 void R_Set_Legend (char* Position, int size, char** legend, char** color, char** pch, char* cex, FILE* pipe);
36 void R_Set_EPS (FILE* pipe);
37 
38 #endif // R_PIPESCRIPT_H_INCLUDED