Skip to content

Sum Operations

Built-in functions › Mathematics › Elementary Math › Sum Operations

6 functions in this category.

FunctionWhat it does
sumx2my2Sum of (x² − y²) over paired arrays.
sumx2py2Sum of (x² + y²) over paired arrays.
sumxmySum of element-wise differences: sum(A - B).
sumxmy2Sum of squared differences between paired arrays.
sumxpySum of element-wise sums: sum(A + B).
sumxpy2Sum of squared element-wise sums: sum((A + B).^2).