sumx2py2
Sum of (x² + y²) over paired arrays.
Syntax
Section titled “Syntax”v = sumx2py2(array1, array2)Description
Section titled “Description”Returns sum(x.^2 + y.^2).
Example
Section titled “Example”sumx2py2([2 3], [4 5]) % 4+16+9+25 = 54