SUM — Sum of array elements#
-
SUM(ARRAY, DIM, MASK)#
Adds the elements of
ARRAYalong dimensionDIMif the corresponding element inMASKisTRUE.- Parameters:
ARRAY – Shall be an array of type
INTEGER,REALorCOMPLEX.DIM – (Optional) shall be a scalar of type
INTEGERwith a value in the range from 1 to n, where n equals the rank ofARRAY.MASK – (Optional) shall be of type
LOGICALand either be a scalar or an array of the same shape asARRAY.
- Returns:
The result is of the same type as
ARRAY.
- Standard:
Fortran 90 and later
- Class:
Transformational function
- Syntax:
RESULT = SUM(ARRAY[, MASK]) RESULT = SUM(ARRAY, DIM[, MASK])
- Example:
PROGRAM test_sum INTEGER :: x(5) = (/ 1, 2, 3, 4 ,5 /) print *, SUM(x) ! all elements, sum = 15 print *, SUM(x, MASK=MOD(x, 2)==1) ! odd elements, sum = 9 END PROGRAM
- See also: