Question: Matrix product simplification

How can I tell Maple to compute the product of tow symbolic matrices

A:=Matrix(2, [[a,b],[c,d]]);
B:=Matrix(2, [[e,f],[g,h]]);

C:=multiply(A,B);

to have C:=([ae+bg, af+bh],[...])

Please Wait...