Error Messages/41052


Error message examples

The number of columns of «A» must match the number of rows of «B» in MatrixMultiply.

Cause

For two matrices, the matrix multiple is only defined if the number of columns of the first matrix «A» is equal to the number of rows of the second matrix «B». You have passed two matrices to the MatrixMultiply function that does not meet the mentioned rule and so would be undefined.

You may have switched the order of the matrix you are trying to multiply.

Remedies

Correct the matrices passed to the function MatrixMultiply so that the number of columns of the first matrix is equal to the number of rows of the second matrix.

See Also

Comments


You are not allowed to post comments.