v2.0.0
Loading...
Searching...
No Matches
sts_ftest.h
Go to the documentation of this file.
1//=============================================================================================================
34
35#ifndef STS_FTEST_H
36#define STS_FTEST_H
37
38//=============================================================================================================
39// INCLUDES
40//=============================================================================================================
41
42#include "sts_global.h"
43
44//=============================================================================================================
45// QT INCLUDES
46//=============================================================================================================
47
48#include <QVector>
49
50//=============================================================================================================
51// EIGEN INCLUDES
52//=============================================================================================================
53
54#include <Eigen/Core>
55
56//=============================================================================================================
57// DEFINE NAMESPACE STSLIB
58//=============================================================================================================
59
60namespace STSLIB
61{
62
63//=============================================================================================================
68 Eigen::MatrixXd matFstat;
69 Eigen::MatrixXd matPval;
72};
73
74//=============================================================================================================
81{
82public:
83 //=========================================================================================================
91 static StatsFtestResult oneWay(const QVector<Eigen::MatrixXd>& groups);
92
93 //=========================================================================================================
103 static double fCdf(double f, int df1, int df2);
104};
105
106} // namespace STSLIB
107
108#endif // STS_FTEST_H
stats library export/import macros.
#define STSSHARED_EXPORT
Definition sts_global.h:50
Statistical testing (t-tests, F-tests, cluster permutation, multiple comparison correction).
Eigen::MatrixXd matFstat
Definition sts_ftest.h:68
Eigen::MatrixXd matPval
Definition sts_ftest.h:69
F-test (one-way ANOVA) statistical testing.
Definition sts_ftest.h:81
static double fCdf(double f, int df1, int df2)
static StatsFtestResult oneWay(const QVector< Eigen::MatrixXd > &groups)
Definition sts_ftest.cpp:55