-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgnuplot_i.hpp
2058 lines (1713 loc) · 59 KB
/
gnuplot_i.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
////////////////////////////////////////////////////////////////////////////////
///
/// \brief A C++ interface to gnuplot.
///
///
/// The interface uses pipes and so won't run on a system that doesn't have
/// POSIX pipe support Tested on Windows (MinGW and Visual C++) and Linux (GCC)
///
/// Version history:
/// 0. C interface
/// by N. Devillard (27/01/03)
/// 1. C++ interface: direct translation from the C interface
/// by Rajarshi Guha (07/03/03)
/// 2. corrections for Win32 compatibility
/// by V. Chyzhdzenka (20/05/03)
/// 3. some member functions added, corrections for Win32 and Linux
/// compatibility
/// by M. Burgis (10/03/08)
///
/// Requirements:
/// * gnuplot has to be installed (http://www.gnuplot.info/download.html)
/// * for Windows: set Path-Variable for Gnuplot path
/// (e.g. C:/program files/gnuplot/bin)
/// or set Gnuplot path with:
/// Gnuplot::set_GNUPlotPath(const std::string &path);
///
////////////////////////////////////////////////////////////////////////////////
#ifndef _GNUPLOT_PIPES_H_
#define _GNUPLOT_PIPES_H_
#include <iostream>
#include <string>
#include <vector>
#include <fstream>
#include <sstream> // for std::ostringstream
#include <stdexcept>
#include <cstdio>
#include <cstdlib> // for getenv()
#include <list> // for std::list
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__TOS_WIN__)
//defined for 32 and 64-bit environments
#include <io.h> // for _access(), _mktemp()
#define GP_MAX_TMP_FILES 27 // 27 temporary files it's Microsoft restriction
#elif defined(unix) || defined(__unix) || defined(__unix__) || defined(__APPLE__)
//all UNIX-like OSs (Linux, *BSD, MacOSX, Solaris, ...)
#include <unistd.h> // for access(), mkstemp()
#define GP_MAX_TMP_FILES 64
#else
#error unsupported or unknown operating system
#endif
//declare classes in global namespace
class GnuplotException : public std::runtime_error
{
public:
GnuplotException(const std::string &msg) : std::runtime_error(msg) {}
};
class Gnuplot
{
private:
//----------------------------------------------------------------------------------
// member data
///\brief pointer to the stream that can be used to write to the pipe
FILE *gnucmd;
///\brief validation of gnuplot session
bool valid;
///\brief true = 2d, false = 3d
bool two_dim;
///\brief number of plots in session
int nplots;
///\brief functions and data are displayed in a defined styles
std::string pstyle;
///\brief interpolate and approximate data in defined styles (e.g. spline)
std::string smooth;
///\brief list of created tmpfiles
std::vector<std::string> tmpfile_list;
//----------------------------------------------------------------------------------
// static data
///\brief number of all tmpfiles (number of tmpfiles restricted)
static int tmpfile_num;
///\brief name of executed GNUPlot file
static std::string m_sGNUPlotFileName;
///\brief gnuplot path
static std::string m_sGNUPlotPath;
///\brief standart terminal, used by showonscreen
static std::string terminal_std;
//----------------------------------------------------------------------------------
// member functions (auxiliary functions)
// ---------------------------------------------------
///\brief get_program_path(); and popen();
///
/// \param --> void
///
/// \return <-- void
// ---------------------------------------------------
void init();
// ---------------------------------------------------
///\brief creates tmpfile and returns its name
///
/// \param tmp --> points to the tempfile
///
/// \return <-- the name of the tempfile
// ---------------------------------------------------
std::string create_tmpfile(std::ofstream &tmp);
//----------------------------------------------------------------------------------
///\brief gnuplot path found?
///
/// \param ---
///
/// \return <-- found the gnuplot path (yes == true, no == false)
// ---------------------------------------------------------------------------------
static bool get_program_path();
// ---------------------------------------------------------------------------------
///\brief checks if file is available
///
/// \param filename --> the filename
/// \param mode --> the mode [optional,default value = 0]
///
/// \return file exists (yes == true, no == false)
// ---------------------------------------------------------------------------------
bool file_available(const std::string &filename);
// ---------------------------------------------------------------------------------
///\brief checks if file exists
///
/// \param filename --> the filename
/// \param mode --> the mode [optional,default value = 0]
///
/// \return file exists (yes == true, no == false)
// ---------------------------------------------------------------------------------
static bool file_exists(const std::string &filename, int mode=0);
public:
// ----------------------------------------------------------------------------
/// \brief optional function: set Gnuplot path manual
/// attention: for windows: path with slash '/' not backslash '\'
///
/// \param path --> the gnuplot path
///
/// \return true on success, false otherwise
// ----------------------------------------------------------------------------
static bool set_GNUPlotPath(const std::string &path);
// ----------------------------------------------------------------------------
/// optional: set standart terminal, used by showonscreen
/// defaults: Windows - win, Linux - x11, Mac - aqua
///
/// \param type --> the terminal type
///
/// \return ---
// ----------------------------------------------------------------------------
static void set_terminal_std(const std::string &type);
//-----------------------------------------------------------------------------
// constructors
// ----------------------------------------------------------------------------
///\brief set a style during construction
Gnuplot(const std::string &style = "points");
/// plot a single std::vector at one go
Gnuplot(const std::vector<double> &x,
const std::string &title = "",
const std::string &style = "points",
const std::string &labelx = "x",
const std::string &labely = "y");
/// plot pairs std::vector at one go
Gnuplot(const std::vector<double> &x,
const std::vector<double> &y,
const std::string &title = "",
const std::string &style = "points",
const std::string &labelx = "x",
const std::string &labely = "y");
/// plot triples std::vector at one go
Gnuplot(const std::vector<double> &x,
const std::vector<double> &y,
const std::vector<double> &z,
const std::string &title = "",
const std::string &style = "points",
const std::string &labelx = "x",
const std::string &labely = "y",
const std::string &labelz = "z");
/// destructor: needed to delete temporary files
~Gnuplot();
//----------------------------------------------------------------------------------
/// send a command to gnuplot
Gnuplot& cmd(const std::string &cmdstr);
// -------------------------------------------------------------------------
///\brief Sends a command to an active gnuplot session, identical to cmd()
/// send a command to gnuplot using the << operator
///
/// \param cmdstr --> the command string
///
/// \return <-- a reference to the gnuplot object
// -------------------------------------------------------------------------
inline Gnuplot& operator<<(const std::string &cmdstr)
{
cmd(cmdstr);
return(*this);
}
//--------------------------------------------------------------------------
// show on screen or write to file
/// sets terminal type to terminal_std
Gnuplot& showonscreen(); // window output is set by default (win/x11/aqua)
/// Saves a gnuplot to a file named filename. Defaults to saving pdf
Gnuplot& savetofigure(const std::string &filename,
const std::string &terminal="ps");
//--------------------------------------------------------------------------
// set and unset
/// set line style (some of these styles require additional information):
/// lines, points, linespoints, impulses, dots, steps, fsteps, histeps,
/// boxes, histograms, filledcurves
Gnuplot& set_style(const std::string &stylestr = "points");
/// interpolation and approximation of data, arguments:
/// csplines, bezier, acsplines (for data values > 0), sbezier, unique, frequency
/// (works only with plot_x, plot_xy, plotfile_x, plotfile_xy
/// (if smooth is set, set_style has no effekt on data plotting)
Gnuplot& set_smooth(const std::string &stylestr = "csplines");
// ----------------------------------------------------------------------
/// \brief unset smooth
/// attention: smooth is not set by default
///
/// \param ---
///
/// \return <-- a reference to a gnuplot object
// ----------------------------------------------------------------------
inline Gnuplot& unset_smooth()
{
smooth = "";
return *this;
};
/// scales the size of the points used in plots
Gnuplot& set_pointsize(const double pointsize = 1.0);
/// turns grid on/off
inline Gnuplot& set_grid()
{
cmd("set grid");
return *this;
};
/// grid is not set by default
inline Gnuplot& unset_grid()
{
cmd("unset grid");
return *this;
};
// -----------------------------------------------
/// set the mulitplot mode
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// -----------------------------------------------
inline Gnuplot& set_multiplot()
{
cmd("set multiplot") ;
return *this;
};
// -----------------------------------------------
/// unsets the mulitplot mode
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// -----------------------------------------------
inline Gnuplot& unset_multiplot()
{
cmd("unset multiplot");
return *this;
};
/// set sampling rate of functions, or for interpolating data
Gnuplot& set_samples(const int samples = 100);
/// set isoline density (grid) for plotting functions as surfaces (for 3d plots)
Gnuplot& set_isosamples(const int isolines = 10);
// --------------------------------------------------------------------------
/// enables/disables hidden line removal for surface plotting (for 3d plot)
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// --------------------------------------------------------------------------
Gnuplot& set_hidden3d()
{
cmd("set hidden3d");
return *this;
};
// ---------------------------------------------------------------------------
/// hidden3d is not set by default
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// ---------------------------------------------------------------------------
inline Gnuplot& unset_hidden3d()
{
cmd("unset hidden3d");
return *this;
};
/// enables/disables contour drawing for surfaces (for 3d plot)
/// base, surface, both
Gnuplot& set_contour(const std::string &position = "base");
// --------------------------------------------------------------------------
/// contour is not set by default, it disables contour drawing for surfaces
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// ------------------------------------------------------------------
inline Gnuplot& unset_contour()
{
cmd("unset contour");
return *this;
};
// ------------------------------------------------------------
/// enables/disables the display of surfaces (for 3d plot)
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// ------------------------------------------------------------------
inline Gnuplot& set_surface()
{
cmd("set surface");
return *this;
};
// ----------------------------------------------------------
/// surface is set by default,
/// it disables the display of surfaces (for 3d plot)
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// ------------------------------------------------------------------
inline Gnuplot& unset_surface()
{
cmd("unset surface");
return *this;
}
/// switches legend on/off
/// position: inside/outside, left/center/right, top/center/bottom, nobox/box
Gnuplot& set_legend(const std::string &position = "default");
// ------------------------------------------------------------------
/// \brief Switches legend off
/// attention:legend is set by default
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// ------------------------------------------------------------------
inline Gnuplot& unset_legend()
{
cmd("unset key");
return *this;
}
// -----------------------------------------------------------------------
/// \brief sets and clears the title of a gnuplot session
///
/// \param title --> the title of the plot [optional, default == ""]
///
/// \return <-- reference to the gnuplot object
// -----------------------------------------------------------------------
inline Gnuplot& set_title(const std::string &title = "")
{
std::string cmdstr;
cmdstr = "set title \"";
cmdstr+=title;
cmdstr+="\"";
*this<<cmdstr;
return *this;
}
//----------------------------------------------------------------------------------
///\brief Clears the title of a gnuplot session
/// The title is not set by default.
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// ---------------------------------------------------------------------------------
inline Gnuplot& unset_title()
{
this->set_title();
return *this;
}
/// set x axis label
Gnuplot& set_ylabel(const std::string &label = "x");
/// set y axis label
Gnuplot& set_xlabel(const std::string &label = "y");
/// set z axis label
Gnuplot& set_zlabel(const std::string &label = "z");
/// set axis - ranges
Gnuplot& set_xrange(const double iFrom,
const double iTo);
/// set y-axis - ranges
Gnuplot& set_yrange(const double iFrom,
const double iTo);
/// set z-axis - ranges
Gnuplot& set_zrange(const double iFrom,
const double iTo);
/// autoscale axis (set by default) of xaxis
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// -----------------------------------------------
inline Gnuplot& set_xautoscale()
{
cmd("set xrange restore");
cmd("set autoscale x");
return *this;
};
// -----------------------------------------------
/// autoscale axis (set by default) of yaxis
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// -----------------------------------------------
inline Gnuplot& set_yautoscale()
{
cmd("set yrange restore");
cmd("set autoscale y");
return *this;
};
// -----------------------------------------------
/// autoscale axis (set by default) of zaxis
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// -----------------------------------------------
inline Gnuplot& set_zautoscale()
{
cmd("set zrange restore");
cmd("set autoscale z");
return *this;
};
/// turns on/off log scaling for the specified xaxis (logscale is not set by default)
Gnuplot& set_xlogscale(const double base = 10);
/// turns on/off log scaling for the specified yaxis (logscale is not set by default)
Gnuplot& set_ylogscale(const double base = 10);
/// turns on/off log scaling for the specified zaxis (logscale is not set by default)
Gnuplot& set_zlogscale(const double base = 10);
// -----------------------------------------------
/// turns off log scaling for the x axis
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// -----------------------------------------------
inline Gnuplot& unset_xlogscale()
{
cmd("unset logscale x");
return *this;
};
// -----------------------------------------------
/// turns off log scaling for the y axis
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// -----------------------------------------------
inline Gnuplot& unset_ylogscale()
{
cmd("unset logscale y");
return *this;
};
// -----------------------------------------------
/// turns off log scaling for the z axis
///
/// \param ---
///
/// \return <-- reference to the gnuplot object
// -----------------------------------------------
inline Gnuplot& unset_zlogscale()
{
cmd("unset logscale z");
return *this;
};
/// set palette range (autoscale by default)
Gnuplot& set_cbrange(const double iFrom, const double iTo);
//--------------------------------------------------------------------------
// plot
/// plot a single std::vector: x
/// from file
Gnuplot& plotfile_x(const std::string &filename,
const unsigned int column = 1,
const std::string &title = "");
/// from std::vector
template<typename X>
Gnuplot& plot_x(const X& x, const std::string &title = "");
/// plot x,y pairs: x y
/// from file
Gnuplot& plotfile_xy(const std::string &filename,
const unsigned int column_x = 1,
const unsigned int column_y = 2,
const std::string &title = "");
/// from data
template<typename X, typename Y>
Gnuplot& plot_xy(const X& x, const Y& y, const std::string &title = "");
/// plot x,y pairs with dy errorbars: x y dy
/// from file
Gnuplot& plotfile_xy_err(const std::string &filename,
const unsigned int column_x = 1,
const unsigned int column_y = 2,
const unsigned int column_dy = 3,
const std::string &title = "");
/// from data
template<typename X, typename Y, typename E>
Gnuplot& plot_xy_err(const X &x, const Y &y, const E &dy,
const std::string &title = "");
/// plot x,y,z triples: x y z
/// from file
Gnuplot& plotfile_xyz(const std::string &filename,
const unsigned int column_x = 1,
const unsigned int column_y = 2,
const unsigned int column_z = 3,
const std::string &title = "");
/// from std::vector
template<typename X, typename Y, typename Z>
Gnuplot& plot_xyz(const X &x,
const Y &y,
const Z &z,
const std::string &title = "");
/// plot an equation of the form: y = ax + b, you supply a and b
Gnuplot& plot_slope(const double a,
const double b,
const std::string &title = "");
/// plot an equation supplied as a std::string y=f(x), write only the
/// function f(x) not y the independent variable has to be x
/// binary operators: ** exponentiation, * multiply, / divide, + add, -
/// substract, % modulo
/// unary operators: - minus, ! factorial
/// elementary functions: rand(x), abs(x), sgn(x), ceil(x), floor(x),
/// int(x), imag(x), real(x), arg(x), sqrt(x), exp(x), log(x), log10(x),
/// sin(x), cos(x), tan(x), asin(x), acos(x), atan(x), atan2(y,x),
/// sinh(x), cosh(x), tanh(x), asinh(x), acosh(x), atanh(x)
/// special functions: erf(x), erfc(x), inverf(x), gamma(x), igamma(a,x),
/// lgamma(x), ibeta(p,q,x), besj0(x), besj1(x), besy0(x), besy1(x),
/// lambertw(x)
/// statistical fuctions: norm(x), invnorm(x)
Gnuplot& plot_equation(const std::string &equation,
const std::string &title = "");
/// plot an equation supplied as a std::string z=f(x,y), write only the
/// function f(x,y) not z the independent variables have to be x and y
Gnuplot& plot_equation3d(const std::string &equation,
const std::string &title = "");
/// plot image
Gnuplot& plot_image(const unsigned char *ucPicBuf,
const unsigned int iWidth,
const unsigned int iHeight,
const std::string &title = "");
//--------------------------------------------------------------------------
///\brief replot repeats the last plot or splot command.
/// this can be useful for viewing a plot with different set options,
/// or when generating the same plot for several devices (showonscreen,
// savetofigure)
///
/// \param ---
///
/// \return ---
//--------------------------------------------------------------------------
inline Gnuplot& replot(void)
{
if (nplots > 0) cmd("replot");
return *this;
};
/// resets a gnuplot session (next plot will erase previous ones)
Gnuplot& reset_plot();
/// resets a gnuplot session and sets all variables to default
Gnuplot& reset_all();
/// deletes temporary files
void remove_tmpfiles();
// -------------------------------------------------------------------
/// \brief Is the gnuplot session valid ??
///
///
/// \param ---
///
/// \return true if valid, false if not
// -------------------------------------------------------------------
inline bool is_valid()
{
return(valid);
};
};
//------------------------------------------------------------------------------
//
// initialize static data
//
int Gnuplot::tmpfile_num = 0;
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__TOS_WIN__)
std::string Gnuplot::m_sGNUPlotFileName = "pgnuplot.exe";
std::string Gnuplot::m_sGNUPlotPath = "C:/program files/gnuplot/bin/";
#elif defined(unix) || defined(__unix) || defined(__unix__) || defined(__APPLE__)
std::string Gnuplot::m_sGNUPlotFileName = "gnuplot";
std::string Gnuplot::m_sGNUPlotPath = "/usr/local/bin/";
#endif
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__TOS_WIN__)
std::string Gnuplot::terminal_std = "windows";
#elif ( defined(unix) || defined(__unix) || defined(__unix__) ) && !defined(__APPLE__)
std::string Gnuplot::terminal_std = "x11";
#elif defined(__APPLE__)
std::string Gnuplot::terminal_std = "aqua";
#endif
//------------------------------------------------------------------------------
//
// constructor: set a style during construction
//
inline Gnuplot::Gnuplot(const std::string &style)
:gnucmd(NULL) ,valid(false) ,two_dim(false) ,nplots(0)
{
init();
set_style(style);
}
//------------------------------------------------------------------------------
//
// constructor: open a new session, plot a signal (x)
//
inline Gnuplot::Gnuplot(const std::vector<double> &x,
const std::string &title,
const std::string &style,
const std::string &labelx,
const std::string &labely)
:gnucmd(NULL) ,valid(false) ,two_dim(false) ,nplots(0)
{
init();
set_style(style);
set_xlabel(labelx);
set_ylabel(labely);
plot_x(x,title);
}
//------------------------------------------------------------------------------
//
// constructor: open a new session, plot a signal (x,y)
//
inline Gnuplot::Gnuplot(const std::vector<double> &x,
const std::vector<double> &y,
const std::string &title,
const std::string &style,
const std::string &labelx,
const std::string &labely)
:gnucmd(NULL) ,valid(false) ,two_dim(false) ,nplots(0)
{
init();
set_style(style);
set_xlabel(labelx);
set_ylabel(labely);
plot_xy(x,y,title);
}
//------------------------------------------------------------------------------
//
// constructor: open a new session, plot a signal (x,y,z)
//
inline Gnuplot::Gnuplot(const std::vector<double> &x,
const std::vector<double> &y,
const std::vector<double> &z,
const std::string &title,
const std::string &style,
const std::string &labelx,
const std::string &labely,
const std::string &labelz)
:gnucmd(NULL) ,valid(false) ,two_dim(false) ,nplots(0)
{
init();
set_style(style);
set_xlabel(labelx);
set_ylabel(labely);
set_zlabel(labelz);
plot_xyz(x,y,z,title);
}
//------------------------------------------------------------------------------
//
/// Plots a 2d graph from a list of doubles: x
//
template<typename X>
Gnuplot& Gnuplot::plot_x(const X& x, const std::string &title)
{
if (x.size() == 0)
{
throw GnuplotException("std::vector too small");
return *this;
}
std::ofstream tmp;
std::string name = create_tmpfile(tmp);
if (name == "")
return *this;
//
// write the data to file
//
for (unsigned int i = 0; i < x.size(); i++)
tmp << x[i] << std::endl;
tmp.flush();
tmp.close();
plotfile_x(name, 1, title);
return *this;
}
//------------------------------------------------------------------------------
//
/// Plots a 2d graph from a list of doubles: x y
//
template<typename X, typename Y>
Gnuplot& Gnuplot::plot_xy(const X& x, const Y& y, const std::string &title)
{
if (x.size() == 0 || y.size() == 0)
{
throw GnuplotException("std::vectors too small");
return *this;
}
if (x.size() != y.size())
{
throw GnuplotException("Length of the std::vectors differs");
return *this;
}
std::ofstream tmp;
std::string name = create_tmpfile(tmp);
if (name == "")
return *this;
//
// write the data to file
//
for (unsigned int i = 0; i < x.size(); i++)
tmp << x[i] << " " << y[i] << std::endl;
tmp.flush();
tmp.close();
plotfile_xy(name, 1, 2, title);
return *this;
}
///-----------------------------------------------------------------------------
///
/// plot x,y pairs with dy errorbars
///
template<typename X, typename Y, typename E>
Gnuplot& Gnuplot::plot_xy_err(const X &x,
const Y &y,
const E &dy,
const std::string &title)
{
if (x.size() == 0 || y.size() == 0 || dy.size() == 0)
{
throw GnuplotException("std::vectors too small");
return *this;
}
if (x.size() != y.size() || y.size() != dy.size())
{
throw GnuplotException("Length of the std::vectors differs");
return *this;
}
std::ofstream tmp;
std::string name = create_tmpfile(tmp);
if (name == "")
return *this;
//
// write the data to file
//
for (unsigned int i = 0; i < x.size(); i++)
tmp << x[i] << " " << y[i] << " " << dy[i] << std::endl;
tmp.flush();
tmp.close();
// Do the actual plot
plotfile_xy_err(name, 1, 2, 3, title);
return *this;
}
//------------------------------------------------------------------------------
//
// Plots a 3d graph from a list of doubles: x y z
//
template<typename X, typename Y, typename Z>
Gnuplot& Gnuplot::plot_xyz(const X &x,
const Y &y,
const Z &z,
const std::string &title)
{
if (x.size() == 0 || y.size() == 0 || z.size() == 0)
{
throw GnuplotException("std::vectors too small");
return *this;
}
if (x.size() != y.size() || x.size() != z.size())
{
throw GnuplotException("Length of the std::vectors differs");
return *this;
}
std::ofstream tmp;
std::string name = create_tmpfile(tmp);
if (name == "")
return *this;
//
// write the data to file
//
for (unsigned int i = 0; i < x.size(); i++)
tmp << x[i] << " " << y[i] << " " << z[i] <<std::endl;
tmp.flush();
tmp.close();
plotfile_xyz(name, 1, 2, 3, title);
return *this;
}
//------------------------------------------------------------------------------
//
// define static member function: set Gnuplot path manual
// for windows: path with slash '/' not backslash '\'
//
bool Gnuplot::set_GNUPlotPath(const std::string &path)
{
std::string tmp = path + "/" + Gnuplot::m_sGNUPlotFileName;
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__TOS_WIN__)
if ( Gnuplot::file_exists(tmp,0) ) // check existence
#elif defined(unix) || defined(__unix) || defined(__unix__) || defined(__APPLE__)
if ( Gnuplot::file_exists(tmp,1) ) // check existence and execution permission
#endif
{
Gnuplot::m_sGNUPlotPath = path;
return true;
}
else
{
Gnuplot::m_sGNUPlotPath.clear();
return false;
}
}
//------------------------------------------------------------------------------
//
// define static member function: set standart terminal, used by showonscreen
// defaults: Windows - win, Linux - x11, Mac - aqua
//
void Gnuplot::set_terminal_std(const std::string &type)
{
#if defined(unix) || defined(__unix) || defined(__unix__) || defined(__APPLE__)
if (type.find("x11") != std::string::npos && getenv("DISPLAY") == NULL)
{
throw GnuplotException("Can't find DISPLAY variable");
}
#endif
Gnuplot::terminal_std = type;
return;
}
//------------------------------------------------------------------------------
//
// A string tokenizer taken from http://www.sunsite.ualberta.ca/Documentation/
// /Gnu/libstdc++-2.90.8/html/21_strings/stringtok_std_h.txt
//
template <typename Container>
void stringtok (Container &container,
std::string const &in,
const char * const delimiters = " \t\n")
{
const std::string::size_type len = in.length();
std::string::size_type i = 0;
while ( i < len )
{