The code will only flag as non-monotonic if the last two points are not monotonic increasing.
The program should exit from loop after flag bMono = False on line 43
|
For j = 1 To nR - 1 |
|
If KnownXs(j, 1) <= KnownXs(j + 1) Then |
|
bMono = True |
|
Else: bMono = False |
|
End If |
|
Next j |
The code will only flag as non-monotonic if the last two points are not monotonic increasing.
The program should exit from loop after flag bMono = False on line 43
beziersplines/Bezier and linear interpolation functions.txt
Lines 40 to 45 in 7476973