To multiply a 200x1 matrix with a 200x200 matrix in MATLAB, you need to use the matrix multiplication operator *
.
Here's an example code that demonstrates how to do this:
main.m156 chars9 lines
The resulting matrix result
will be a 200x1 matrix.
Please note that in MATLAB, for matrix multiplication, the number of columns in the first matrix should match the number of rows in the second matrix.
gistlibby LogSnag