2.1. concatenate
- hysteresis.baseFuncs.concatenate(curves, outputClass=<class 'hysteresis.baseClass.Hysteresis'>)[source]
This function creates a new curve from the xy data of a series of curves, or xy arrays.
The output object is new - if curves are used in the concatenation, propreties from those curves, i.e. peaks, revesral points, etc, will not be included in the output curve.
If the last point of one curve is the first point of the next point, that point will be skipped.
- Parameters:
curves (list of curves) – A number of curves, or numpy arrays. Curves must a have a xy attribute numpy arrays must be 2D
- Returns:
hysteresis – The ouput hysteresis object which is a combination of all of the input curves
- Return type:
Hysteresis Object