Operator Reference
max_matrix (Operator)
max_matrix
— Returns the elementwise maximum of a matrix.
Signature
max_matrix( : : MatrixID, MaxType : MatrixMaxID)
Description
The operator max_matrix
returns the maximum values of the
elements of the Matrix
defined by the matrix handle
MatrixID
. A new matrix MatrixMax
is generated
with the result and the matrix handle MatrixMaxID
of this
matrix is returned. Access to the elements of the matrix is
possible e.g., with the operator get_full_matrix
.
The type of maximum determination of the matrix can be selected via
the parameter MaxType
:
- 'columns' :
-
The maximum is returned for each column of the
Matrix
separately. The resulting matrixMatrixMax
has one row and the identical number of columns as the input matrix.Example:
MaxType
= 'columns' - 'rows' :
-
The maximum is returned for each row of the
Matrix
separately. The resulting matrixMatrixMax
has the identical number of rows as the input matrix and one column.Example:
MaxType
= 'rows' - 'full' :
-
The maximum is returned using all elements of the
Matrix
. The resulting matrixMatrixMax
has one row and one column.Example:
MaxType
= 'full'
Execution Information
- Multithreading type: reentrant (runs in parallel with non-exclusive operators).
- Multithreading scope: global (may be called from any thread).
- Processed without parallelization.
Parameters
MatrixID
(input_control) matrix →
(handle)
Matrix handle of the input matrix.
MaxType
(input_control) string →
(string)
Type of maximum determination.
Default: 'columns'
List of values: 'columns' , 'full' , 'rows'
MatrixMaxID
(output_control) matrix →
(handle)
Matrix handle with the maximum values of the input matrix.
Result
If the parameters are valid, the operator max_matrix
returns
the value 2 (
H_MSG_TRUE)
. If necessary, an exception is raised.
Possible Predecessors
Possible Successors
get_full_matrix
,
get_value_matrix
See also
Module
Foundation