##// END OF EJS Templates
Added missing specific spectrogram ctor...
jeandet -
r101:3bce297cb13e
parent child
Show More
@@ -35,8 +35,22 public:
35 35 _axes[1] = y;
36 36 }
37 37
38 SpectrogramTimeSerie(SpectrogramTimeSerie::axis_t&& t,
39 SpectrogramTimeSerie::axis_t&& y,
40 SpectrogramTimeSerie::data_t&& values,
41 const std::initializer_list<std::size_t>& shape, double min_sampling,
42 double max_sampling, bool y_is_log = true)
43 : TimeSeries::TimeSerie<double, SpectrogramTimeSerie, 2>(t, values,
44 shape),
45 min_sampling{min_sampling}, max_sampling{max_sampling}, y_is_log{
46 y_is_log}
47 {
48 _axes[1] = y;
49 }
50
38 51 ~SpectrogramTimeSerie() = default;
39 52 using TimeSerie::TimeSerie;
40 53 };
41 54
42 55 #endif // SCIQLOP_SPECTROGRAMTIMESERIE_H
56
General Comments 0
You need to be logged in to leave comments. Login now