Owning Class: basic
Requires: MathScript RT Module
c = max(a)
c = max(a, b)
c = max(a, [], e)
[c, d] = max(a)
Determines the largest input element. If an element is complex, LabVIEW considers only its magnitude.
| Name | Description |
|---|---|
| a | Specifies a numeric scalar, vector, or matrix. |
| b | Specifies a scalar, vector, or matrix of the same size as a. |
| e | Specifies the dimension of a in which LabVIEW determines the largest input element. e is an integer. |
| [] | Tells LabVIEW that you want to specify a and e but not b. |
| Name | Description |
|---|---|
| c | Returns the largest element in a if a is a vector. If a is a matrix, c returns a row vector of the largest elements in each column of a or a column vector of the largest elements in each row of a, depending on the value of e. If you specify b, c returns the largest of the corresponding elements of a and b. c is a scalar or vector. |
| d | Specifies the indexes in a of the largest elements. d is a scalar or vector. |
The following table lists the support characteristics of this function.
| Supported in the LabVIEW Run-Time Engine | Yes |
| Supported on RT targets | Yes |
| Suitable for bounded execution times on RT | Yes |
A = rand(3, 3)
C = max(A)