The function IsStrictlyMonotone checks whether the values in the array Data form a strictly monotonic series or not. A strictly monotonic series contains consecutive values which all exhibit either positive or negative differences to their respective predecessor (zero differences are not allowed).
Please note that the array has to have a minimum length of three elements, if the array is shorter the function returns always TRUE.
|