51 void convlv(
double *sig,
int n,
double *dres,
int m,
int sign);
virtual void output()
Performs the data analysis and takes care of the output.
Definition: Convolution.cpp:118
int signalDataSize()
Returns the size of the signal data set.
Definition: Convolution.h:43
#define sign(a)
Definition: ShapiroWilkTest.cpp:40
Abstract base class for data analysis operations.
Definition: Filter.h:43
void setDataFromTable(Table *t, const QString &signalColName, const QString &responseColName)
Definition: Convolution.cpp:44
void addResultCurve()
Handles the graphical output.
Definition: Convolution.cpp:125
int d_n_response
Size of the response data set.
Definition: Convolution.h:58
QtiPlot's main window.
Definition: ApplicationWindow.h:133
Definition: Convolution.h:61
MDI window providing a spreadsheet table with column logic.
Definition: Table.h:57
int responseDataSize()
Returns the size of the response data set.
Definition: Convolution.h:45
Definition: Convolution.h:34
int d_n_signal
Size of the signal data set.
Definition: Convolution.h:56
void convlv(double *sig, int n, double *dres, int m, int sign)
Performes the convolution of the two data sets and stores the result in the signal data set...
Definition: Convolution.cpp:168
Convolution(ApplicationWindow *parent, Table *t, const QString &signalColName, const QString &responseColName)
Definition: Convolution.cpp:37