AudibleT 0.0.1
A real-time A/B/X audio testing tool for subjective assessment of various audio parameters, compatible for general purpose computer as well as embedded systems.
Loading...
Searching...
No Matches
BinomialGraph.h
Go to the documentation of this file.
1//=======================================================================
25//=======================================================================
26
27#ifndef BINOMIALGRAPH_H
28#define BINOMIALGRAPH_H
29
30#include <QChart>
31#include <QChartView>
32
33#include "SessionTrial.h"
34
43class BinomialGraph : public QChartView
44{
45 Q_OBJECT
46
47public:
48 explicit BinomialGraph(QWidget *parent = nullptr);
49
57 void updateGraph(const QVector<SessionTrial> &trials);
58
59private:
68 QChart *createBinomialChart(const QVector<SessionTrial> &trials);
69};
70
71#endif // BINOMIALGRAPH_H
72
73
A graphical representation of a binomial and inverse binomial distribution based on session trials.
Definition: BinomialGraph.h:44
void updateGraph(const QVector< SessionTrial > &trials)
Update the graph with a new set of trials.
Definition: BinomialGraph.cpp:48