ProfileMinimum
Finds the lowest value of the input profile, its precise location and the corresponding index.
Syntax
C++
C#
Python
def ProfileMinimum( inProfile: Profile, /, *, inRange: Range | None = None, inInterpolationMethod: ProfileInterpolationMethod = ProfileInterpolationMethod.Quadratic4 ) -> ( outMinimumPoint: float, outMinimumIndex: int, outMinimumValue: float )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inProfile | Profile | Input profile | |
![]() |
inRange | Range | None | None | |
![]() |
inInterpolationMethod | ProfileInterpolationMethod | ProfileInterpolationMethod.Quadratic4 | Profile points' interpolation method |
![]() |
outMinimumPoint | float | Position of lowest value with respect to profile's offset and scale | |
![]() |
outMinimumIndex | int | Index of lowest value | |
![]() |
outMinimumValue | float | Lowest value |


