MATLAB: Matrix Multiply Problem and how to write at Matlab

matrix

Hi guys, i'm noob about matrix.
% code
given data that matrix A = [1 2; 3 4]
and matrix B = [4 5;6 7]
that [A]*[C]=[B]
How to find matrix C?
thanks

Best Answer

C = inv(A)*B
or
C = A\B