Three methods for finding where a decreasing curve transitions from steep to shallow.
Finds where the curve bends most sharply — a purely geometric criterion.
Computed via central finite differences on sampled points.
Finds where two linear fits best partition the data into fast and slow regimes.
Grid search over candidate split positions; each segment fit by OLS.
First point where the slope drops below a fraction θ of the initial slope.
Adjust θ to control how much steepness drop defines the elbow.