summarylogtreecommitdiffstats
path: root/qtiplot-0.9.8.9-FFT.patch
blob: cec3fa13dd35308b740a98ccceb77419ab99c570 (plain)
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
--- qtiplot-0.9.8.9/qtiplot/src/analysis/FFT.h	2013-09-01 11:53:45.200163882 -0300
***************
*** 36,42 ****
  Q_OBJECT
  
  public:
!     FFT(ApplicationWindow *parent, Table *t, const QString& realColName, const QString& imagColName = QString(), int from = 1, int to = -1);
  	FFT(ApplicationWindow *parent, QwtPlotCurve *c);
  	FFT(ApplicationWindow *parent, QwtPlotCurve *c, double start, double end);
  	FFT(ApplicationWindow *parent, Graph *g, const QString& curveTitle);
--- 36,42 ----
  Q_OBJECT
  
  public:
!     FFT(ApplicationWindow *parent, Table *t, const QString& realColName, const QString& imagColName = QString(), int from = 1, int to = -1, bool foo = false);
  	FFT(ApplicationWindow *parent, QwtPlotCurve *c);
  	FFT(ApplicationWindow *parent, QwtPlotCurve *c, double start, double end);
  	FFT(ApplicationWindow *parent, Graph *g, const QString& curveTitle);
***************
*** 52,57 ****
--- 52,59 ----
  	Matrix *realOutputMatrix(){return d_re_out_matrix;}
  	Matrix *imaginaryOutputMatrix(){return d_im_out_matrix;}
  
+     bool setDataFromTable(Table *t, const QString& realColName, const QString& imagColName = QString(), int from = 0, int to = -1, bool foo = false);
+ 
  private:
      void init();
      void output();
***************
*** 60,67 ****
  	void fftTable();
  	void fftMatrix();
  
-     bool setDataFromTable(Table *t, const QString& realColName, const QString& imagColName = QString(), int from = 0, int to = -1);
- 
      double d_sampling;
      //! Flag telling if an inverse FFT must be performed.
      bool d_inverse;
--- 62,67 ----