Matrix.Min(Array) Method

Top 

Description

Returns the minimum value in the matrix and stores its position in the passed 'indices' argument. The first element of 'indices' will contain the row index of the minimum value, and the second element will contain the column index of the minimum value.

 

Timing Precision Mode

This page describes functionality in nanosecond timing precision mode.

Click here to see the documentation for this object in millisecond timing precision mode.

 

Method Signature

Matrix.Min(

Array indices)

 

 

Arguments

indices


Description:

The indices of the minimum value will be stored here. If there are multiple minimum entries, the first entry found via a columnwise search will be returned.

 

 

 

Return Value

Type:

number

 

 

Returns the minimum value of all matrix elements.

 

Syntax

myVariable1 = myMatrix1.Min(myArray1);

 

 

See also

Matrix Object

Matrix.Min

Matrix, Array, and Variable Math Guide