ILNumerics Ultimate VS

ExtensionMethodsnanargmax Method (ConcreteArrayfcomplex, Arrayfcomplex, InArrayfcomplex, OutArrayfcomplex, RetArrayfcomplex, Storagefcomplex, NullableInt32, OutArrayfcomplex)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
[numpy API] Computes the indices of maximum elements along the specified dimension of A, ignoring NaNs.

[ILNumerics numpy Module]

Namespace:  ILNumerics
Assembly:  ILNumerics.numpy (in ILNumerics.numpy.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax

public static RetArray<long> nanargmax(
	this ConcreteArray<fcomplex, Array<fcomplex>, InArray<fcomplex>, OutArray<fcomplex>, RetArray<fcomplex>, Storage<fcomplex>> A,
	Nullable<int> axis = null,
	OutArray<fcomplex> values = null
)

Parameters

A
Type: ILNumerics.Core.ArraysConcreteArrayfcomplex, Arrayfcomplex, InArrayfcomplex, OutArrayfcomplex, RetArrayfcomplex, Storagefcomplex
Array to compute the indices for. This is not altered.
axis (Optional)
Type: SystemNullableInt32
[Optional] The working dimension. Default: (null) finds the maximum of the whole array.
values (Optional)
Type: ILNumericsOutArrayfcomplex
[Optional] Returns the maximum values found from A also. Default: (null) maximum values are not returned.

Return Value

Type: RetArrayInt64

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ConcreteArrayfcomplex, Arrayfcomplex, InArrayfcomplex, OutArrayfcomplex, RetArrayfcomplex, Storagefcomplex. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks

Negative dimension specifier 'axis' will be shifted into the range of valid dimension indices. -1 corresponds to the last dimension.

argmax(ConcreteArrayfcomplex, Arrayfcomplex, InArrayfcomplex, OutArrayfcomplex, RetArrayfcomplex, Storagefcomplex, NullableInt32, OutArrayfcomplex) prioritizes NaN values over non-NaN values. I.e.: if any of the elements is NaN the respective result value will be NaN also. Conversely, nanargmax(ConcreteArrayfcomplex, Arrayfcomplex, InArrayfcomplex, OutArrayfcomplex, RetArrayfcomplex, Storagefcomplex, NullableInt32, OutArrayfcomplex), ignores NaN values and gives the maximum among the non-NaN values, if possible. This corresponds to the behavior of ILNumerics version 4, Matlab(R) a.s.f.

See max(BaseArrayfcomplex, OutArrayInt64, Int32, Boolean) for details.

[ILNumerics numpy Module]

See Also

Reference

MathInternal.max(BaseArrayfcomplex, OutArrayInt64, Int32, Boolean)