You are here: Start » AVL.NET » Invoke.ProfileMaximum

Invoke.ProfileMaximum

Finds the highest value of the input profile, its precise location and the corresponding index.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void ProfileMaximum
(
	Avl.Profile inProfile,
	Optional<Avl.Range> inRange,
	Avl.ProfileInterpolationMethod inInterpolationMethod,
	out float outMaximumPoint,
	Optional<int> outMaximumIndex,
	Optional<float> outMaximumValue
)

Parameters

Name Type Range Default Description
inProfileAvl.ProfileInput profile.
inRangeAtl.Optional<Avl.Range>
inInterpolationMethodAvl.ProfileInterpolationMethodQuadratic4Profile points' interpolation method. Default value: Quadratic4.
outMaximumPointfloatPosition of highest value with respect to profile's offset and scale.
outMaximumIndexAtl.Optional<int>Index of highest value.
outMaximumValueAtl.Optional<float>Highest value.

See also