RosettaCodeData/Task/Function-definition/MATLAB/function-definition.m

4 lines
44 B
Matlab

function C = multiply(A,B)
C = A*B;
end