In: Mechanical Engineering
Complete the following program so that C = A*B where A and B are the matrices defined below.
N=4;
M=3;
A=rand(M,N);
B=rand(N,M);
C = ?
for m = 1: M
for n = 1 : ?
for p = 1 : ?
C (m,n) = ?
end
end
end
You may upload a script