Releases: iamlikeme/rainflow
Releases · iamlikeme/rainflow
v3.2.0
v3.1.1
v3.1.0
Changed
- (#56)
extract_cycles
now returns no cycles for very short time series
(containing zero or one reversals). Contributed by
denis-jasselette-jc. - (#57) Dropped tests for Python 3.4 and 3.5 due to the extra work required
to make the CI and tests work for these old versions.
v3.0.1
v3.0.0
Changed
- (#35) By default, the first and the last points in the time series are treated as reversals.
- (#37) Function
reversals
now yields index and value of each reversal, instead of value only. - (#38) Function
extract_cycles
now yields range, mean, count, start index and end index for each cycle instead of low, high and count. - (#43) Arguments
binsize
andnbins
tocount_cycles
produce bins which include the right edge and exclude the left edge.
Removed
- (#35) Removed optional arguments
left
andright
to functionsreversals
,extract_cycles
andcount_cycles
. The new behaviour correspods toleft=True
andright=True
.