Analysis Library Chapter 3
LabWindows/CVI Standard Libraries 3-26 © National Instruments Corporation
Parameters
Input inputArray double-precision
array Input array.
numberofElements integer Number of elements in
inputArray.
Output mean double-precision Mean value.
Return Value
status integer Refer to error codes in
Table 3-2.
Mul1D
int status = Mul1D (double arrayX[], double arrayY[], int numberofElements,
double outputArray[]);
Purpose
Multiplies two 1D arrays. The function obtains the ith element of the output array by using the
following formula.
zxy
iii
=∗
The function performs the operation in place; that is, outputArray can be the same array as
either arrayX or arrayY.
Parameters
Input arrayX double-precision
array Input array.
arrayY double-precision
array Input array.
numberofElements integer Number of elements to be
multiplied.
Output outputArray double-precision
array Result array.