In MATLAB, you can calculate the product of two matrices using the * operator.
Here's an example of how you can multiply two matrices A and B in MATLAB:
main.m194 chars7 lines
In this example, matrix A is a 2x3 matrix and matrix B is a 3x2 matrix.
The result of multiplying the two matrices A and B will be a 2x2 matrix stored in matrix C.
gistlibby LogSnag