Statistica Visual Basic Library of Matrix Functions - MatrixMultiply (Matrix1, Matrix2, MatrixResult)

Parameter Description
Matrix1 name of first data matrix (m,n) (see Arrays in functions)
Matrix2 name of second data matrix (n,m2) (see Arrays in functions)
MatrixResult destination matrix (m,m2) (see Arrays in functions)

The MatrixMultiply function will perform matrix multiplication of Matrix1(m,n) by Matrix2(n,m2) (see also Arrays in functions) and place the result in the destination matrix MatrixResult(m,m2). The destination matrix must have the same number of rows as Matrix1, and the same number of columns as Matrix2.

Related topics
MatrixElemMultiply, MatrixKroneckerMultiply. For more information on using arrays, see Arrays in functions. For a complete list of matrix functions, see Statistica Visual Basic library of matrix functions.