/// <summary>
 /// The Copy Constructor
 /// </summary>
 /// <param name="rhs">The FilteredPointList from which to copy</param>
 public FilteredPointList(FilteredPointList rhs)
 {
     _x             = (double[])rhs._x.Clone();
     _y             = (double[])rhs._y.Clone();
     _minBoundIndex = rhs._minBoundIndex;
     _maxBoundIndex = rhs._maxBoundIndex;
     _maxPts        = rhs._maxPts;
 }
 /// <summary>
 /// The Copy Constructor
 /// </summary>
 /// <param name="rhs">The FilteredPointList from which to copy</param>
 public FilteredPointList( FilteredPointList rhs )
 {
     _x = (double[]) rhs._x.Clone();
     _y = (double[]) rhs._y.Clone();
     _minBoundIndex = rhs._minBoundIndex;
     _maxBoundIndex = rhs._maxBoundIndex;
     _maxPts = rhs._maxPts;
 }