ILNumerics - Technical Application Development
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Result of operating elements of A and B elementwise.
Gives the minimum of corresponding elements from A and B. Recognizes NaN values.
[ILNumerics Computing Engine]
Namespace: ILNumerics
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
public static RetArray<fcomplex> min( BaseArray<fcomplex> A, BaseArray<fcomplex> B, bool omitNaN = true )
Parameters
- A
- Type: ILNumericsBaseArrayfcomplex
The one array. - B
- Type: ILNumericsBaseArrayfcomplex
The other array. - omitNaN (Optional)
- Type: SystemBoolean
[Optional] specifies how to deal with NaN values in A or B. Default: (true) prefer non-NaN values if possible.
Return Value
Type: RetArrayfcomplexResult of operating elements of A and B elementwise.
Remarks
Handling of NaN values: omitNaN is true (default). For floating point element types and if one of the elements to compare is NaN the other element is returned. If both elements are NaN the element from A is returned.
If omitNaN is false the result is NaN if at least one of the elements is NaN. If both elements are NaN than the first element is returned.
[ILNumerics Computing Engine]
See Also