SWMMVis  6.0.0-alpha.4
Qt6/C++ GIS-based graphical user interface for the SWMMVis engine (6.0.0-alpha.4)
Loading...
Searching...
No Matches
seriespairing.h
Go to the documentation of this file.
1
13#ifndef OPENSWMMVIS_PLOT_SERIESPAIRING_H
14#define OPENSWMMVIS_PLOT_SERIESPAIRING_H
15
16#include <vector>
17
18namespace openswmmvis::plot {
19
22 std::vector<double> x;
23 std::vector<double> y;
24};
25
41PairedSamples pairSamplesNearest(const std::vector<double>& bt,
42 const std::vector<double>& bv,
43 const std::vector<double>& ct,
44 const std::vector<double>& cv);
45
46} // namespace openswmmvis::plot
47
48#endif // OPENSWMMVIS_PLOT_SERIESPAIRING_H
Definition chartproperties.h:34
PairedSamples pairSamplesNearest(const std::vector< double > &bt, const std::vector< double > &bv, const std::vector< double > &ct, const std::vector< double > &cv)
Pair two time series by nearest timestamp.
Definition seriespairing.cpp:14
Paired (x, y) sample values produced by pairSamplesNearest.
Definition seriespairing.h:21
std::vector< double > x
Baseline values.
Definition seriespairing.h:22
std::vector< double > y
Comparison values.
Definition seriespairing.h:23