__declspec(property(get = GetValuesSorted, put = SetValuesSorted)) bool ValuesSorted;
Defines if X Values are sorted.
Read:
bool GetValuesSorted();Write:
void SetValuesSorted(const bool Value);Remarks:
If X Values defining the interpolation points are sorted, but the Breaks are not equidistant (BreaksEquidistant is false), the Evaluate routine will use a consecutive linear search algorithm to find the right breaks interval. The linear search for each X-Value will continue from the point where it left off for the previous one. If X Values are not sorted, the ValuesSorted must be set to false. A bisection search algorithm will be employed in that case.
See Also: TPiecePoly::Evaluate
Declared in Dew::Math::TPiecePoly · Dew.Math/Polynoms.h · Cross-compiler