2D Linear Evaluation

Performs a linear evaluation on the input matrix, X, using the inputs a and b. Details

X is the 2D input array.
a is the multiplicative constant.
b is the additive constant.
Y = X * a + b is the 2D output array.
error returns any error or warning condition from the VI.

2D Linear Evaluation Details

The 2D output array

Y = X*a + b

is given by

Y=aX + b

where a denotes the multiplicative constant and b denotes the additive constant. Each element of Y is given by

Y[i,j] = X[i, j] * a + b.