Returns a vector containing the results of multiplying every second corresponding set of elements of the given vectors, beginning with the second element.
Elemental function
If ARG1 is an INTEGER(1) vector, then the result is an INTEGER(2) vector. If ARG1 is an INTEGER(2) vector, then the result is an INTEGER(4) vector. If ARG1 is an UNSIGNED(1) vector, then the result is an UNSIGNED(2) vector. If ARG1 is an UNSIGNED(2) vector, then the result is an UNSIGNED(4) vector.
Assume that the elements of each vector are numbered beginning with 0. For each element n of the result vector, the value is the product of the value of element 2n+1 of ARG1 and the value of element 2n+1 of ARG2.