Given the following arrays matrices in MATLAB A 28 3627 16
Solution
Create three arrays, A, B and C.
A = [28 36; -27 16];
 B = [-7 -3; 9 4];
 C = [3;2];
 Calculate the product of A, B and C.
A1 = (A*B)*C;
 B1 = A.*B;
 C1 = C*B*A;
 D1 = A./B;
 E1 = B.^2;
![Given the following arrays (matrices) in MATLAB >>A = [28 36;-27 16]; B = [-7 -3; 9 4]; c = [3;-2] compute a) A*B*C, b) A.*B, c)C*B*A, d)A./B, e) B.^2Sol  Given the following arrays (matrices) in MATLAB >>A = [28 36;-27 16]; B = [-7 -3; 9 4]; c = [3;-2] compute a) A*B*C, b) A.*B, c)C*B*A, d)A./B, e) B.^2Sol](/WebImages/29/given-the-following-arrays-matrices-in-matlab-a-28-3627-16-1080093-1761567069-0.webp)
