@@ -11,8 +11,8 | |||||
11 | class SCIQLOP_CORE_EXPORT VectorSeries : public DataSeries<2> { |
|
11 | class SCIQLOP_CORE_EXPORT VectorSeries : public DataSeries<2> { | |
12 | public: |
|
12 | public: | |
13 | /** |
|
13 | /** | |
14 |
* Ctor. The vectors must have the same size, otherwise a |
|
14 | * Ctor with three vectors (one per component). The vectors must have the same size, otherwise a | |
15 | * created. |
|
15 | * ScalarSeries with no values will be created. | |
16 | * @param xAxisData x-axis data |
|
16 | * @param xAxisData x-axis data | |
17 | * @param xvaluesData x-values data |
|
17 | * @param xvaluesData x-values data | |
18 | * @param yvaluesData y-values data |
|
18 | * @param yvaluesData y-values data | |
@@ -22,6 +22,10 public: | |||||
22 | QVector<double> yValuesData, QVector<double> zValuesData, |
|
22 | QVector<double> yValuesData, QVector<double> zValuesData, | |
23 | const Unit &xAxisUnit, const Unit &valuesUnit); |
|
23 | const Unit &xAxisUnit, const Unit &valuesUnit); | |
24 |
|
24 | |||
|
25 | /// Default Ctor | |||
|
26 | explicit VectorSeries(QVector<double> xAxisData, QVector<double> valuesData, | |||
|
27 | const Unit &xAxisUnit, const Unit &valuesUnit); | |||
|
28 | ||||
25 | std::unique_ptr<IDataSeries> clone() const; |
|
29 | std::unique_ptr<IDataSeries> clone() const; | |
26 |
|
30 | |||
27 | std::shared_ptr<IDataSeries> subDataSeries(const SqpRange &range) override; |
|
31 | std::shared_ptr<IDataSeries> subDataSeries(const SqpRange &range) override; |
@@ -1,12 +1,56 | |||||
1 | #include "Data/VectorSeries.h" |
|
1 | #include "Data/VectorSeries.h" | |
2 |
|
2 | |||
|
3 | namespace { | |||
|
4 | ||||
|
5 | /** | |||
|
6 | * Flatten the three components of a vector to a single QVector that can be passed to an ArrayData | |||
|
7 | * | |||
|
8 | * Example: | |||
|
9 | * xValues = {1, 2, 3} | |||
|
10 | * yValues = {4, 5, 6} | |||
|
11 | * zValues = {7, 8, 9} | |||
|
12 | * | |||
|
13 | * result = {1, 4, 7, 2, 5, 8, 3, 6, 9} | |||
|
14 | * | |||
|
15 | * @param xValues the x-component values of the vector | |||
|
16 | * @param yValues the y-component values of the vector | |||
|
17 | * @param zValues the z-component values of the vector | |||
|
18 | * @return the single QVector | |||
|
19 | * @remarks the three components are consumed | |||
|
20 | * @sa ArrayData | |||
|
21 | */ | |||
|
22 | QVector<double> flatten(QVector<double> xValues, QVector<double> yValues, QVector<double> zValues) | |||
|
23 | { | |||
|
24 | if (xValues.size() != yValues.size() || xValues.size() != zValues.size()) { | |||
|
25 | /// @todo ALX : log | |||
|
26 | return {}; | |||
|
27 | } | |||
|
28 | ||||
|
29 | auto result = QVector<double>{}; | |||
|
30 | result.reserve(xValues.size() * 3); | |||
|
31 | ||||
|
32 | while (!xValues.isEmpty()) { | |||
|
33 | result.append({xValues.takeFirst(), yValues.takeFirst(), zValues.takeFirst()}); | |||
|
34 | } | |||
|
35 | ||||
|
36 | return result; | |||
|
37 | } | |||
|
38 | ||||
|
39 | } // namespace | |||
|
40 | ||||
3 | VectorSeries::VectorSeries(QVector<double> xAxisData, QVector<double> xValuesData, |
|
41 | VectorSeries::VectorSeries(QVector<double> xAxisData, QVector<double> xValuesData, | |
4 | QVector<double> yValuesData, QVector<double> zValuesData, |
|
42 | QVector<double> yValuesData, QVector<double> zValuesData, | |
5 | const Unit &xAxisUnit, const Unit &valuesUnit) |
|
43 | const Unit &xAxisUnit, const Unit &valuesUnit) | |
|
44 | : VectorSeries{std::move(xAxisData), flatten(std::move(xValuesData), std::move(yValuesData), | |||
|
45 | std::move(zValuesData)), | |||
|
46 | xAxisUnit, valuesUnit} | |||
|
47 | { | |||
|
48 | } | |||
|
49 | ||||
|
50 | VectorSeries::VectorSeries(QVector<double> xAxisData, QVector<double> valuesData, | |||
|
51 | const Unit &xAxisUnit, const Unit &valuesUnit) | |||
6 | : DataSeries{std::make_shared<ArrayData<1> >(std::move(xAxisData)), xAxisUnit, |
|
52 | : DataSeries{std::make_shared<ArrayData<1> >(std::move(xAxisData)), xAxisUnit, | |
7 |
std::make_shared<ArrayData<2> >( |
|
53 | std::make_shared<ArrayData<2> >(std::move(valuesData), 3), valuesUnit} | |
8 | std::move(xValuesData), std::move(yValuesData), std::move(zValuesData)}), |
|
|||
9 | valuesUnit} |
|
|||
10 | { |
|
54 | { | |
11 | } |
|
55 | } | |
12 |
|
56 |
General Comments 0
You need to be logged in to leave comments.
Login now